pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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>1.1-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <scm>
  9. <connection>scm:git:https://git.tbvns.xyz/tbvns/PowerGD.git</connection>
  10. <url>https://git.tbvns.xyz/tbvns/PowerGD</url>
  11. <tag>HEAD</tag>
  12. </scm>
  13. <modules>
  14. <module>GD4J</module>
  15. <module>PowerGDEditor</module>
  16. </modules>
  17. <properties>
  18. <maven.compiler.source>21</maven.compiler.source>
  19. <maven.compiler.target>21</maven.compiler.target>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. </properties>
  22. <organization>
  23. <name>Tbvns</name>
  24. <url>https://git.tbvns.xyz</url>
  25. </organization>
  26. <inceptionYear>2024</inceptionYear>
  27. <name>PowerGD</name>
  28. <description>Set of useful tools for geometry dash</description>
  29. <repositories>
  30. <repository>
  31. <id>JCenter</id>
  32. <url>https://jcenter.bintray.com/</url>
  33. </repository>
  34. <repository>
  35. <id>jitpack.io</id>
  36. <url>https://jitpack.io</url>
  37. </repository>
  38. </repositories>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.java-websocket</groupId>
  42. <artifactId>Java-WebSocket</artifactId>
  43. <version>1.5.6</version>
  44. </dependency>
  45. <!-- https://mvnrepository.com/artifact/javax.vecmath/vecmath -->
  46. <dependency>
  47. <groupId>org.joml</groupId>
  48. <artifactId>joml</artifactId>
  49. <version>1.10.5</version>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/org.locationtech.jts.io/jts-io-common -->
  52. <dependency>
  53. <groupId>org.locationtech.jts.io</groupId>
  54. <artifactId>jts-io-common</artifactId>
  55. <version>1.19.0</version>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts-core -->
  58. <dependency>
  59. <groupId>org.locationtech.jts</groupId>
  60. <artifactId>jts-core</artifactId>
  61. <version>1.19.0</version>
  62. </dependency>
  63. <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts -->
  64. <dependency>
  65. <groupId>org.locationtech.jts</groupId>
  66. <artifactId>jts</artifactId>
  67. <version>1.19.0</version>
  68. <type>pom</type>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-web -->
  71. <dependency>
  72. <groupId>org.openjfx</groupId>
  73. <artifactId>javafx-web</artifactId>
  74. <version>23-ea+18</version>
  75. </dependency>
  76. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  77. <dependency>
  78. <groupId>commons-codec</groupId>
  79. <artifactId>commons-codec</artifactId>
  80. <version>1.17.1</version>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  83. <dependency>
  84. <groupId>commons-io</groupId>
  85. <artifactId>commons-io</artifactId>
  86. <version>2.17.0</version>
  87. </dependency>
  88. <!-- https://mvnrepository.com/artifact/com.jcraft/jzlib -->
  89. <dependency>
  90. <groupId>com.jcraft</groupId>
  91. <artifactId>jzlib</artifactId>
  92. <version>1.1.3</version>
  93. </dependency>
  94. <!-- https://mvnrepository.com/artifact/com.github.oshi/oshi-core -->
  95. <dependency>
  96. <groupId>com.github.oshi</groupId>
  97. <artifactId>oshi-core</artifactId>
  98. <version>6.6.5</version>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
  101. <dependency>
  102. <groupId>com.fasterxml.jackson.dataformat</groupId>
  103. <artifactId>jackson-dataformat-xml</artifactId>
  104. <version>2.18.0</version>
  105. </dependency>
  106. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  107. <dependency>
  108. <groupId>com.fasterxml.jackson.core</groupId>
  109. <artifactId>jackson-databind</artifactId>
  110. <version>2.18.0</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.reflections</groupId>
  114. <artifactId>reflections</artifactId>
  115. <version>0.10.2</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.projectlombok</groupId>
  119. <artifactId>lombok</artifactId>
  120. <optional>true</optional>
  121. <version>1.18.34</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.openjfx</groupId>
  125. <artifactId>javafx-controls</artifactId>
  126. <version>21</version>
  127. </dependency>
  128. <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
  129. <dependency>
  130. <groupId>ch.qos.logback</groupId>
  131. <artifactId>logback-classic</artifactId>
  132. <version>1.5.11</version>
  133. </dependency>
  134. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
  135. <dependency>
  136. <groupId>org.slf4j</groupId>
  137. <artifactId>slf4j-api</artifactId>
  138. <version>2.1.0-alpha1</version>
  139. </dependency>
  140. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  141. <dependency>
  142. <groupId>com.fasterxml.jackson.core</groupId>
  143. <artifactId>jackson-databind</artifactId>
  144. <version>2.18.0</version>
  145. </dependency>
  146. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
  147. <dependency>
  148. <groupId>com.fasterxml.jackson.dataformat</groupId>
  149. <artifactId>jackson-dataformat-xml</artifactId>
  150. <version>2.18.0</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.stanfy</groupId>
  154. <artifactId>gson-xml-java</artifactId>
  155. <version>0.1.7</version>
  156. </dependency>
  157. </dependencies>
  158. <build>
  159. <plugins>
  160. <plugin>
  161. <groupId>org.apache.maven.plugins</groupId>
  162. <artifactId>maven-assembly-plugin</artifactId>
  163. <configuration>
  164. <descriptorRefs>
  165. <descriptorRef>jar-with-dependencies</descriptorRef>
  166. </descriptorRefs>
  167. <archive>
  168. <manifest>
  169. <mainClass>xyz.tbvns.ui.Main</mainClass>
  170. </manifest>
  171. </archive>
  172. </configuration>
  173. <executions>
  174. <execution>
  175. <id>make-assembly</id>
  176. <phase>package</phase>
  177. <goals>
  178. <goal>single</goal>
  179. </goals>
  180. </execution>
  181. </executions>
  182. </plugin>
  183. <!-- <plugin>
  184. <groupId>com.akathist.maven.plugins.launch4j</groupId>
  185. <artifactId>launch4j-maven-plugin</artifactId>
  186. <version>2.5.0</version>
  187. <executions>
  188. <execution>
  189. <id>l4j-gui</id>
  190. <phase>package</phase>
  191. <goals><goal>launch4j</goal></goals>
  192. <configuration>
  193. <icon>GD3D.ico</icon>
  194. <classPath>
  195. <mainClass>xyz.tbvns.ui.Main</mainClass>
  196. </classPath>
  197. <headerType>gui</headerType>
  198. <outfile>target/PowerGD.exe</outfile>
  199. <jar>./target/PowerGD-1.0-ALPHA-jar-with-dependencies.jar</jar>
  200. <errTitle>PowerGD - Error:</errTitle>
  201. <jre>
  202. <minVersion>21</minVersion>
  203. </jre>
  204. <versionInfo>
  205. <fileVersion>1.2.3.4</fileVersion>
  206. <txtFileVersion>txt file version?</txtFileVersion>
  207. <fileDescription>a description</fileDescription>
  208. <copyright>my copyright</copyright>
  209. <productVersion>4.3.2.1</productVersion>
  210. <txtProductVersion>txt product version</txtProductVersion>
  211. <productName>GD3D</productName>
  212. <internalName>GD3D</internalName>
  213. <originalFilename>GD3D.exe</originalFilename>
  214. </versionInfo>
  215. </configuration>
  216. </execution>
  217. </executions>
  218. </plugin> -->
  219. </plugins>
  220. </build>
  221. </project>