pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. <dependency>
  91. <groupId>dev.3-3</groupId>
  92. <artifactId>jmccc</artifactId>
  93. <version>3.1.4</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>dev.3-3</groupId>
  97. <artifactId>jmccc-microsoft-authenticator</artifactId>
  98. <version>3.1.4</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>dev.3-3</groupId>
  102. <artifactId>jmccc-mcdownloader</artifactId>
  103. <version>3.1.4</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>dev.3-3</groupId>
  107. <artifactId>jmccc-mojang-api</artifactId>
  108. <version>3.1.4</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>dev.3-3</groupId>
  112. <artifactId>jmccc-mcdownloader</artifactId>
  113. <version>3.1.4</version>
  114. </dependency>
  115. </dependencies>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-compiler-plugin</artifactId>
  121. <version>3.11.0</version>
  122. <configuration>
  123. <source>17</source>
  124. <target>17</target>
  125. </configuration>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.openjfx</groupId>
  129. <artifactId>javafx-maven-plugin</artifactId>
  130. <version>0.0.8</version>
  131. <executions>
  132. <execution>
  133. <!-- Default configuration for running with: mvn clean javafx:run -->
  134. <id>default-cli</id>
  135. <configuration>
  136. <mainClass>com.snowchen.snglfx17/com.snowchen.snglfx17.HelloApplication</mainClass>
  137. <launcher>app</launcher>
  138. <jlinkZipName>app</jlinkZipName>
  139. <jlinkImageName>app</jlinkImageName>
  140. <noManPages>true</noManPages>
  141. <stripDebug>true</stripDebug>
  142. <noHeaderFiles>true</noHeaderFiles>
  143. </configuration>
  144. </execution>
  145. </executions>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>