pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>eu.oschl</groupId>
  7. <artifactId>schmorn-gui</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>schmorn-gui</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <junit.version>5.12.1</junit.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.openjfx</groupId>
  17. <artifactId>javafx-controls</artifactId>
  18. <version>21.0.6</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.openjfx</groupId>
  22. <artifactId>javafx-fxml</artifactId>
  23. <version>21.0.6</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.junit.jupiter</groupId>
  27. <artifactId>junit-jupiter-api</artifactId>
  28. <version>${junit.version}</version>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.junit.jupiter</groupId>
  33. <artifactId>junit-jupiter-engine</artifactId>
  34. <version>${junit.version}</version>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>3.13.0</version>
  44. <configuration>
  45. <source>25</source>
  46. <target>25</target>
  47. </configuration>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.openjfx</groupId>
  51. <artifactId>javafx-maven-plugin</artifactId>
  52. <version>0.0.8</version>
  53. <executions>
  54. <execution>
  55. <!-- Default configuration for running with: mvn clean javafx:run -->
  56. <id>default-cli</id>
  57. <configuration>
  58. <mainClass>eu.oschl.schmorn.Main</mainClass>
  59. <launcher>schmorn</launcher>
  60. <jlinkZipName>schmorn</jlinkZipName>
  61. <jlinkImageName>schmorn</jlinkImageName>
  62. <noManPages>true</noManPages>
  63. <stripDebug>true</stripDebug>
  64. <noHeaderFiles>true</noHeaderFiles>
  65. </configuration>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>