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.

81 lines
3.1 KiB

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. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <version>3.11.0</version>
  50. <configuration>
  51. <source>21</source>
  52. <target>21</target>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.openjfx</groupId>
  57. <artifactId>javafx-maven-plugin</artifactId>
  58. <version>0.0.8</version>
  59. <executions>
  60. <execution>
  61. <!-- Default configuration for running with: mvn clean javafx:run -->
  62. <id>default-cli</id>
  63. <configuration>
  64. <mainClass>de.hsfulda.uno/de.hsfulda.onses.HelloApplication</mainClass>
  65. <launcher>app</launcher>
  66. <jlinkZipName>app</jlinkZipName>
  67. <jlinkImageName>app</jlinkImageName>
  68. <noManPages>true</noManPages>
  69. <stripDebug>true</stripDebug>
  70. <noHeaderFiles>true</noHeaderFiles>
  71. </configuration>
  72. </execution>
  73. </executions>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>