pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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>task11v27window</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>task11v27window</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <junit.version>5.9.1</junit.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.openjfx</groupId>
  17. <artifactId>javafx-controls</artifactId>
  18. <version>18.0.2</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.openjfx</groupId>
  22. <artifactId>javafx-fxml</artifactId>
  23. <version>18.0.2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.dlsc.formsfx</groupId>
  27. <artifactId>formsfx-core</artifactId>
  28. <version>11.5.0</version>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.openjfx</groupId>
  32. <artifactId>*</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.junit.jupiter</groupId>
  38. <artifactId>junit-jupiter-api</artifactId>
  39. <version>${junit.version}</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.junit.jupiter</groupId>
  44. <artifactId>junit-jupiter-engine</artifactId>
  45. <version>${junit.version}</version>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <version>3.10.1</version>
  55. <configuration>
  56. <source>18</source>
  57. <target>18</target>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.openjfx</groupId>
  62. <artifactId>javafx-maven-plugin</artifactId>
  63. <version>0.0.8</version>
  64. <executions>
  65. <execution>
  66. <!-- Default configuration for running with: mvn clean javafx:run -->
  67. <id>default-cli</id>
  68. <configuration>
  69. <mainClass>com.example.task11v27window/com.example.task11v27window.HelloApplication
  70. </mainClass>
  71. <launcher>app</launcher>
  72. <jlinkZipName>app</jlinkZipName>
  73. <jlinkImageName>app</jlinkImageName>
  74. <noManPages>true</noManPages>
  75. <stripDebug>true</stripDebug>
  76. <noHeaderFiles>true</noHeaderFiles>
  77. </configuration>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>