pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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.snowchen</groupId>
  7. <artifactId>SNGL-FX17</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>SNGL-FX17</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <junit.version>5.9.2</junit.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.openjfx</groupId>
  17. <artifactId>javafx-controls</artifactId>
  18. <version>21-ea+17</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.openjfx</groupId>
  22. <artifactId>javafx-fxml</artifactId>
  23. <version>21-ea+17</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. <dependency>
  38. <groupId>io.github.mkpaz</groupId>
  39. <artifactId>atlantafx-base</artifactId>
  40. <version>2.0.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.oshi</groupId>
  44. <artifactId>oshi-core</artifactId>
  45. <version>5.8.6</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.hutool</groupId>
  49. <artifactId>hutool-all</artifactId>
  50. <version>5.6.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.ehcache</groupId>
  54. <artifactId>ehcache</artifactId>
  55. <version>3.10.0</version>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpcore</artifactId>
  61. <version>4.4.16</version>
  62. </dependency>
  63. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 -->
  64. <dependency>
  65. <groupId>org.apache.httpcomponents.client5</groupId>
  66. <artifactId>httpclient5</artifactId>
  67. <version>5.2.1</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore-nio -->
  70. <dependency>
  71. <groupId>org.apache.httpcomponents</groupId>
  72. <artifactId>httpcore-nio</artifactId>
  73. <version>4.4.16</version>
  74. </dependency>
  75. <dependency>
  76. <groupId> org.apache.cassandra</groupId>
  77. <artifactId>cassandra-all</artifactId>
  78. <version>0.8.1</version>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.slf4j</groupId>
  82. <artifactId>slf4j-log4j12</artifactId>
  83. </exclusion>
  84. <exclusion>
  85. <groupId>log4j</groupId>
  86. <artifactId>log4j</artifactId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-compiler-plugin</artifactId>
  96. <version>3.11.0</version>
  97. <configuration>
  98. <source>17</source>
  99. <target>17</target>
  100. </configuration>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.openjfx</groupId>
  104. <artifactId>javafx-maven-plugin</artifactId>
  105. <version>0.0.8</version>
  106. <executions>
  107. <execution>
  108. <!-- Default configuration for running with: mvn clean javafx:run -->
  109. <id>default-cli</id>
  110. <configuration>
  111. <mainClass>com.snowchen.snglfx17/com.snowchen.snglfx17.HelloApplication</mainClass>
  112. <launcher>app</launcher>
  113. <jlinkZipName>app</jlinkZipName>
  114. <jlinkImageName>app</jlinkImageName>
  115. <noManPages>true</noManPages>
  116. <stripDebug>true</stripDebug>
  117. <noHeaderFiles>true</noHeaderFiles>
  118. </configuration>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>