pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>xyz.tbvns</groupId>
  5. <artifactId>PowerGD</artifactId>
  6. <version>${BUILD_NUMBER}</version>
  7. <packaging>pom</packaging>
  8. <modules>
  9. <module>GD4J</module>
  10. <module>PowerGDEditor</module>
  11. </modules>
  12. <properties>
  13. <maven.compiler.source>21</maven.compiler.source>
  14. <maven.compiler.target>21</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <organization>
  18. <name>Tbvns</name>
  19. <url>https://git.tbvns.xyz</url>
  20. </organization>
  21. <inceptionYear>2024</inceptionYear>
  22. <name>PowerGD</name>
  23. <description>Set of useful tools for geometry dash</description>
  24. <repositories>
  25. <repository>
  26. <id>JCenter</id>
  27. <url>https://jcenter.bintray.com/</url>
  28. </repository>
  29. <repository>
  30. <id>jitpack.io</id>
  31. <url>https://jitpack.io</url>
  32. </repository>
  33. </repositories>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.java-websocket</groupId>
  37. <artifactId>Java-WebSocket</artifactId>
  38. <version>1.5.6</version>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/javax.vecmath/vecmath -->
  41. <dependency>
  42. <groupId>org.joml</groupId>
  43. <artifactId>joml</artifactId>
  44. <version>1.10.5</version>
  45. </dependency>
  46. <!-- https://mvnrepository.com/artifact/org.locationtech.jts.io/jts-io-common -->
  47. <dependency>
  48. <groupId>org.locationtech.jts.io</groupId>
  49. <artifactId>jts-io-common</artifactId>
  50. <version>1.19.0</version>
  51. </dependency>
  52. <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts-core -->
  53. <dependency>
  54. <groupId>org.locationtech.jts</groupId>
  55. <artifactId>jts-core</artifactId>
  56. <version>1.19.0</version>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts -->
  59. <dependency>
  60. <groupId>org.locationtech.jts</groupId>
  61. <artifactId>jts</artifactId>
  62. <version>1.19.0</version>
  63. <type>pom</type>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-web -->
  66. <dependency>
  67. <groupId>org.openjfx</groupId>
  68. <artifactId>javafx-web</artifactId>
  69. <version>23-ea+18</version>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  72. <dependency>
  73. <groupId>commons-codec</groupId>
  74. <artifactId>commons-codec</artifactId>
  75. <version>1.17.1</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  78. <dependency>
  79. <groupId>commons-io</groupId>
  80. <artifactId>commons-io</artifactId>
  81. <version>2.17.0</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/com.jcraft/jzlib -->
  84. <dependency>
  85. <groupId>com.jcraft</groupId>
  86. <artifactId>jzlib</artifactId>
  87. <version>1.1.3</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/com.github.oshi/oshi-core -->
  90. <dependency>
  91. <groupId>com.github.oshi</groupId>
  92. <artifactId>oshi-core</artifactId>
  93. <version>6.6.5</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
  96. <dependency>
  97. <groupId>com.fasterxml.jackson.dataformat</groupId>
  98. <artifactId>jackson-dataformat-xml</artifactId>
  99. <version>2.18.0</version>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  102. <dependency>
  103. <groupId>com.fasterxml.jackson.core</groupId>
  104. <artifactId>jackson-databind</artifactId>
  105. <version>2.18.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.reflections</groupId>
  109. <artifactId>reflections</artifactId>
  110. <version>0.10.2</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.projectlombok</groupId>
  114. <artifactId>lombok</artifactId>
  115. <optional>true</optional>
  116. <version>1.18.34</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.openjfx</groupId>
  120. <artifactId>javafx-controls</artifactId>
  121. <version>21</version>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
  124. <dependency>
  125. <groupId>ch.qos.logback</groupId>
  126. <artifactId>logback-classic</artifactId>
  127. <version>1.5.11</version>
  128. </dependency>
  129. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
  130. <dependency>
  131. <groupId>org.slf4j</groupId>
  132. <artifactId>slf4j-api</artifactId>
  133. <version>2.1.0-alpha1</version>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  136. <dependency>
  137. <groupId>com.fasterxml.jackson.core</groupId>
  138. <artifactId>jackson-databind</artifactId>
  139. <version>2.18.0</version>
  140. </dependency>
  141. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
  142. <dependency>
  143. <groupId>com.fasterxml.jackson.dataformat</groupId>
  144. <artifactId>jackson-dataformat-xml</artifactId>
  145. <version>2.18.0</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.stanfy</groupId>
  149. <artifactId>gson-xml-java</artifactId>
  150. <version>0.1.7</version>
  151. </dependency>
  152. </dependencies>
  153. <build>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.apache.maven.plugins</groupId>
  157. <artifactId>maven-assembly-plugin</artifactId>
  158. <configuration>
  159. <descriptorRefs>
  160. <descriptorRef>jar-with-dependencies</descriptorRef>
  161. </descriptorRefs>
  162. <archive>
  163. <manifest>
  164. <mainClass>xyz.tbvns.ui.Main</mainClass>
  165. </manifest>
  166. </archive>
  167. </configuration>
  168. <executions>
  169. <execution>
  170. <id>make-assembly</id>
  171. <phase>package</phase>
  172. <goals>
  173. <goal>single</goal>
  174. </goals>
  175. </execution>
  176. </executions>
  177. </plugin>
  178. </plugins>
  179. </build>
  180. </project>