pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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>dev.3-3</groupId>
  44. <artifactId>jmccc</artifactId>
  45. <version>3.1.4</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>dev.3-3</groupId>
  49. <artifactId>jmccc-microsoft-authenticator</artifactId>
  50. <version>3.1.4</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>dev.3-3</groupId>
  54. <artifactId>jmccc-mcdownloader</artifactId>
  55. <version>3.1.4</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>dev.3-3</groupId>
  59. <artifactId>jmccc-mojang-api</artifactId>
  60. <version>3.1.4</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>dev.3-3</groupId>
  64. <artifactId>jmccc-mcdownloader</artifactId>
  65. <version>3.1.4</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.oshi</groupId>
  69. <artifactId>oshi-core</artifactId>
  70. <version>5.8.6</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>cn.hutool</groupId>
  74. <artifactId>hutool-all</artifactId>
  75. <version>5.6.0</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  78. <dependency>
  79. <groupId>log4j</groupId>
  80. <artifactId>log4j</artifactId>
  81. <version>1.2.17</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl -->
  84. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
  85. <dependency>
  86. <groupId>org.apache.logging.log4j</groupId>
  87. <artifactId>log4j-api</artifactId>
  88. <version>2.21.1</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.logging.log4j</groupId>
  92. <artifactId>log4j-slf4j-impl</artifactId>
  93. <version>2.21.1</version>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.ehcache</groupId>
  98. <artifactId>ehcache</artifactId>
  99. <version>3.10.0</version>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  102. <dependency>
  103. <groupId>org.apache.httpcomponents</groupId>
  104. <artifactId>httpcore</artifactId>
  105. <version>4.4.16</version>
  106. </dependency>
  107. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 -->
  108. <dependency>
  109. <groupId>org.apache.httpcomponents.client5</groupId>
  110. <artifactId>httpclient5</artifactId>
  111. <version>5.2.1</version>
  112. </dependency>
  113. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore-nio -->
  114. <dependency>
  115. <groupId>org.apache.httpcomponents</groupId>
  116. <artifactId>httpcore-nio</artifactId>
  117. <version>4.4.16</version>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-compiler-plugin</artifactId>
  125. <version>3.11.0</version>
  126. <configuration>
  127. <source>17</source>
  128. <target>17</target>
  129. </configuration>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.openjfx</groupId>
  133. <artifactId>javafx-maven-plugin</artifactId>
  134. <version>0.0.8</version>
  135. <executions>
  136. <execution>
  137. <!-- Default configuration for running with: mvn clean javafx:run -->
  138. <id>default-cli</id>
  139. <configuration>
  140. <mainClass>com.snowchen.snglfx17/com.snowchen.snglfx17.HelloApplication</mainClass>
  141. <launcher>app</launcher>
  142. <jlinkZipName>app</jlinkZipName>
  143. <jlinkImageName>app</jlinkImageName>
  144. <noManPages>true</noManPages>
  145. <stripDebug>true</stripDebug>
  146. <noHeaderFiles>true</noHeaderFiles>
  147. </configuration>
  148. </execution>
  149. </executions>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. </project>