|
@ -12,6 +12,71 @@ |
|
|
<maven.compiler.source>21</maven.compiler.source> |
|
|
<maven.compiler.source>21</maven.compiler.source> |
|
|
<maven.compiler.target>21</maven.compiler.target> |
|
|
<maven.compiler.target>21</maven.compiler.target> |
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
|
|
<junit.version>5.10.1</junit.version> |
|
|
</properties> |
|
|
</properties> |
|
|
|
|
|
|
|
|
|
|
|
<dependencies> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.openjfx</groupId> |
|
|
|
|
|
<artifactId>javafx-controls</artifactId> |
|
|
|
|
|
<version>21</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.openjfx</groupId> |
|
|
|
|
|
<artifactId>javafx-fxml</artifactId> |
|
|
|
|
|
<version>21</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.kordamp.bootstrapfx</groupId> |
|
|
|
|
|
<artifactId>bootstrapfx-core</artifactId> |
|
|
|
|
|
<version>0.4.0</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.junit.jupiter</groupId> |
|
|
|
|
|
<artifactId>junit-jupiter-api</artifactId> |
|
|
|
|
|
<version>${junit.version}</version> |
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.junit.jupiter</groupId> |
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId> |
|
|
|
|
|
<version>${junit.version}</version> |
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
|
|
<plugins> |
|
|
|
|
|
<plugin> |
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
|
|
<version>3.11.0</version> |
|
|
|
|
|
<configuration> |
|
|
|
|
|
<source>21</source> |
|
|
|
|
|
<target>21</target> |
|
|
|
|
|
</configuration> |
|
|
|
|
|
</plugin> |
|
|
|
|
|
<plugin> |
|
|
|
|
|
<groupId>org.openjfx</groupId> |
|
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId> |
|
|
|
|
|
<version>0.0.8</version> |
|
|
|
|
|
<executions> |
|
|
|
|
|
<execution> |
|
|
|
|
|
<!-- Default configuration for running with: mvn clean javafx:run --> |
|
|
|
|
|
<id>default-cli</id> |
|
|
|
|
|
<configuration> |
|
|
|
|
|
<mainClass>de.hsfulda.uno/de.hsfulda.onses.HelloApplication</mainClass> |
|
|
|
|
|
<launcher>app</launcher> |
|
|
|
|
|
<jlinkZipName>app</jlinkZipName> |
|
|
|
|
|
<jlinkImageName>app</jlinkImageName> |
|
|
|
|
|
<noManPages>true</noManPages> |
|
|
|
|
|
<stripDebug>true</stripDebug> |
|
|
|
|
|
<noHeaderFiles>true</noHeaderFiles> |
|
|
|
|
|
</configuration> |
|
|
|
|
|
</execution> |
|
|
|
|
|
</executions> |
|
|
|
|
|
</plugin> |
|
|
|
|
|
</plugins> |
|
|
|
|
|
</build> |
|
|
|
|
|
|
|
|
</project> |
|
|
</project> |