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.

62 lines
2.4 KiB

2 years 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.example</groupId>
  7. <artifactId>JavaFXOpenWebinar</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>JavaFXOpenWebinar</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.openjfx</groupId>
  16. <artifactId>javafx-controls</artifactId>
  17. <version>18.0.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.openjfx</groupId>
  21. <artifactId>javafx-fxml</artifactId>
  22. <version>18.0.1</version>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <version>3.10.1</version>
  31. <configuration>
  32. <source>18</source>
  33. <target>18</target>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.openjfx</groupId>
  38. <artifactId>javafx-maven-plugin</artifactId>
  39. <version>0.0.8</version>
  40. <executions>
  41. <execution>
  42. <!-- Default configuration for running with: mvn clean javafx:run -->
  43. <id>default-cli</id>
  44. <configuration>
  45. <mainClass>com.example.javafxopenwebinar/com.example.javafxopenwebinar.HelloApplication
  46. </mainClass>
  47. <launcher>app</launcher>
  48. <jlinkZipName>app</jlinkZipName>
  49. <jlinkImageName>app</jlinkImageName>
  50. <noManPages>true</noManPages>
  51. <stripDebug>true</stripDebug>
  52. <noHeaderFiles>true</noHeaderFiles>
  53. </configuration>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>