pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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>GD3D-rewrite</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <organization>
  10. <name>Tbvns</name>
  11. <url>https://github.com/tbvns</url>
  12. </organization>
  13. <inceptionYear>2024</inceptionYear>
  14. <description>A 3d importer for GD</description>
  15. <name>GD3D</name>
  16. <properties>
  17. <maven.compiler.source>21</maven.compiler.source>
  18. <maven.compiler.target>21</maven.compiler.target>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <repositories>
  22. <repository>
  23. <id>JCenter</id>
  24. <url>https://jcenter.bintray.com/</url>
  25. </repository>
  26. <repository>
  27. <id>jitpack.io</id>
  28. <url>https://jitpack.io</url>
  29. </repository>
  30. </repositories>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.openjfx</groupId>
  34. <artifactId>javafx-controls</artifactId>
  35. <version>21</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.openjfx</groupId>
  39. <artifactId>javafx-fxml</artifactId>
  40. <version>21</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.java-websocket</groupId>
  44. <artifactId>Java-WebSocket</artifactId>
  45. <version>1.5.6</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/javax.vecmath/vecmath -->
  48. <dependency>
  49. <groupId>org.joml</groupId>
  50. <artifactId>joml</artifactId>
  51. <version>1.10.5</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/org.locationtech.jts.io/jts-io-common -->
  54. <dependency>
  55. <groupId>org.locationtech.jts.io</groupId>
  56. <artifactId>jts-io-common</artifactId>
  57. <version>1.19.0</version>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts-core -->
  60. <dependency>
  61. <groupId>org.locationtech.jts</groupId>
  62. <artifactId>jts-core</artifactId>
  63. <version>1.19.0</version>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts -->
  66. <dependency>
  67. <groupId>org.locationtech.jts</groupId>
  68. <artifactId>jts</artifactId>
  69. <version>1.19.0</version>
  70. <type>pom</type>
  71. </dependency>
  72. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-web -->
  73. <dependency>
  74. <groupId>org.openjfx</groupId>
  75. <artifactId>javafx-web</artifactId>
  76. <version>23-ea+18</version>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  79. <dependency>
  80. <groupId>commons-codec</groupId>
  81. <artifactId>commons-codec</artifactId>
  82. <version>1.17.1</version>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  85. <dependency>
  86. <groupId>commons-io</groupId>
  87. <artifactId>commons-io</artifactId>
  88. <version>2.17.0</version>
  89. </dependency>
  90. <!-- https://mvnrepository.com/artifact/com.jcraft/jzlib -->
  91. <dependency>
  92. <groupId>com.jcraft</groupId>
  93. <artifactId>jzlib</artifactId>
  94. <version>1.1.3</version>
  95. </dependency>
  96. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-assembly-plugin</artifactId>
  102. <configuration>
  103. <descriptorRefs>
  104. <descriptorRef>jar-with-dependencies</descriptorRef>
  105. </descriptorRefs>
  106. <archive>
  107. <manifest>
  108. <mainClass>xyz.tbvns.Main</mainClass>
  109. </manifest>
  110. </archive>
  111. </configuration>
  112. <executions>
  113. <execution>
  114. <id>make-assembly</id>
  115. <phase>package</phase>
  116. <goals>
  117. <goal>single</goal>
  118. </goals>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. <plugin>
  123. <groupId>com.akathist.maven.plugins.launch4j</groupId>
  124. <artifactId>launch4j-maven-plugin</artifactId>
  125. <version>2.5.0</version>
  126. <executions>
  127. <execution>
  128. <id>l4j-gui</id>
  129. <phase>package</phase>
  130. <goals><goal>launch4j</goal></goals>
  131. <configuration>
  132. <icon>GD3D.ico</icon>
  133. <classPath>
  134. <mainClass>xyz.tbvns.Main</mainClass>
  135. </classPath>
  136. <headerType>gui</headerType>
  137. <outfile>target/GD3D.exe</outfile>
  138. <jar>./target/GD3D-rewrite-1.0-SNAPSHOT-jar-with-dependencies.jar</jar>
  139. <errTitle>GD3D - Error:</errTitle>
  140. <jre>
  141. <minVersion>21</minVersion>
  142. </jre>
  143. <versionInfo>
  144. <fileVersion>1.2.3.4</fileVersion>
  145. <txtFileVersion>txt file version?</txtFileVersion>
  146. <fileDescription>a description</fileDescription>
  147. <copyright>my copyright</copyright>
  148. <productVersion>4.3.2.1</productVersion>
  149. <txtProductVersion>txt product version</txtProductVersion>
  150. <productName>GD3D</productName>
  151. <internalName>GD3D</internalName>
  152. <originalFilename>GD3D.exe</originalFilename>
  153. </versionInfo>
  154. </configuration>
  155. </execution>
  156. </executions>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. </project>