pom.xml 7.9 KB

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