opentdk-gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opentdk</groupId> <artifactId>opentdk-gui</artifactId> <version>1.6.4</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- Coordinates --> <groupId>org.opentdk</groupId> <artifactId>opentdk-gui</artifactId> <version>1.6.4</version> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <packaging>jar</packaging> <!-- Name, description and URL --> <name>${project.groupId}:${project.artifactId}</name> <description>The Open Tool Development Kit provides packages and classes for easy implementation of Java tools or applications. Originally designed for test supporting software.</description> <url>https://github.com/LK-Test-Solutions/OpenTDK_GUI</url> <!-- License information --> <licenses> <license> <name>BSD 2-Clause "Simplified"</name> <url>https://opensource.org/licenses/BSD-2-Clause</url> </license> </licenses> <!-- Developer information --> <developers> <developer> <id>fme</id> <name>Fabian Meisinger</name> <email>fabian.meisinger@lk-test.de</email> <organization>LK Test Solutions</organization> <organizationUrl>https://www.lk-test.de/</organizationUrl> </developer> </developers> <!-- Distribution managment and authentication --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <!-- Source control information --> <scm> <connection>scm:git:git://github.com/LK-Test-Solutions/OpenTDK_GUI.git</connection> <developerConnection>scm:git:ssh://github.com:LK-Test-Solutions/OpenTDK_GUI.git</developerConnection> <url>https://github.com/LK-Test-Solutions/OpenTDK_GUI/tree/main</url> </scm> <!-- Sign artifact --> <profiles> <profile> <id>ci-cd</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <!-- Build Properties --> <build> <sourceDirectory>src</sourceDirectory> <resources> <resource> <directory>src</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> <!-- Required external libraries --> <dependencies> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-base</artifactId> <version>19.0.2.1</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>19.0.2.1</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>19.0.2.1</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-swing</artifactId> <version>19.0.2.1</version> </dependency> <dependency> <groupId>org.opentdk</groupId> <artifactId>opentdk-api</artifactId> <version>1.6.4</version> </dependency> </dependencies> </project>