pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>nordh.xyz</groupId>
  5. <artifactId>recept</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. <maven.compiler.source>11</maven.compiler.source>
  10. <maven.compiler.target>11</maven.compiler.target>
  11. </properties>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.openjfx</groupId>
  15. <artifactId>javafx-controls</artifactId>
  16. <version>13</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.openjfx</groupId>
  20. <artifactId>javafx-fxml</artifactId>
  21. <version>13</version>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-compiler-plugin</artifactId>
  29. <version>3.8.0</version>
  30. <configuration>
  31. <release>11</release>
  32. </configuration>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.openjfx</groupId>
  36. <artifactId>javafx-maven-plugin</artifactId>
  37. <version>0.0.6</version>
  38. <executions>
  39. <execution>
  40. <!-- Default configuration for running -->
  41. <!-- Usage: mvn clean javafx:run -->
  42. <id>default-cli</id>
  43. <configuration>
  44. <mainClass>nordh.xyz.App</mainClass>
  45. </configuration>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>