You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
3.5 KiB

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>de.hsfulda.onses</groupId>
  7. <artifactId>Onses</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>21</maven.compiler.source>
  11. <maven.compiler.target>21</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <junit.version>5.10.1</junit.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.openjfx</groupId>
  18. <artifactId>javafx-controls</artifactId>
  19. <version>21</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.openjfx</groupId>
  23. <artifactId>javafx-fxml</artifactId>
  24. <version>21</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.kordamp.bootstrapfx</groupId>
  28. <artifactId>bootstrapfx-core</artifactId>
  29. <version>0.4.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.junit.jupiter</groupId>
  33. <artifactId>junit-jupiter-api</artifactId>
  34. <version>${junit.version}</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.junit.jupiter</groupId>
  39. <artifactId>junit-jupiter-engine</artifactId>
  40. <version>${junit.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.testfx</groupId>
  45. <artifactId>testfx-junit5</artifactId>
  46. <version>4.0.17</version>
  47. <scope>test</scope>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. <version>3.11.0</version>
  56. <configuration>
  57. <source>21</source>
  58. <target>21</target>
  59. </configuration>
  60. </plugin>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-surefire-plugin</artifactId>
  64. <version>3.2.5</version>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.openjfx</groupId>
  68. <artifactId>javafx-maven-plugin</artifactId>
  69. <version>0.0.8</version>
  70. <executions>
  71. <execution>
  72. <!-- Default configuration for running with: mvn clean javafx:run -->
  73. <id>default-cli</id>
  74. <configuration>
  75. <mainClass>de.hsfulda.uno/de.hsfulda.onses.HelloApplication</mainClass>
  76. <launcher>app</launcher>
  77. <jlinkZipName>app</jlinkZipName>
  78. <jlinkImageName>app</jlinkImageName>
  79. <noManPages>true</noManPages>
  80. <stripDebug>true</stripDebug>
  81. <noHeaderFiles>true</noHeaderFiles>
  82. </configuration>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>