pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-assembly-plugin</artifactId>
  84. <configuration>
  85. <descriptorRefs>
  86. <descriptorRef>jar-with-dependencies</descriptorRef>
  87. </descriptorRefs>
  88. <archive>
  89. <manifest>
  90. <mainClass>xyz.tbvns.Main</mainClass>
  91. </manifest>
  92. </archive>
  93. </configuration>
  94. <executions>
  95. <execution>
  96. <id>make-assembly</id>
  97. <phase>package</phase>
  98. <goals>
  99. <goal>single</goal>
  100. </goals>
  101. </execution>
  102. </executions>
  103. </plugin>
  104. <plugin>
  105. <groupId>com.akathist.maven.plugins.launch4j</groupId>
  106. <artifactId>launch4j-maven-plugin</artifactId>
  107. <version>2.5.0</version>
  108. <executions>
  109. <execution>
  110. <id>l4j-gui</id>
  111. <phase>package</phase>
  112. <goals><goal>launch4j</goal></goals>
  113. <configuration>
  114. <icon>GD3D.ico</icon>
  115. <classPath>
  116. <mainClass>xyz.tbvns.Main</mainClass>
  117. </classPath>
  118. <headerType>gui</headerType>
  119. <outfile>target/GD3D.exe</outfile>
  120. <jar>./target/GD3D-rewrite-1.0-SNAPSHOT-jar-with-dependencies.jar</jar>
  121. <errTitle>GD3D - Error:</errTitle>
  122. <jre>
  123. <minVersion>21</minVersion>
  124. </jre>
  125. <versionInfo>
  126. <fileVersion>1.2.3.4</fileVersion>
  127. <txtFileVersion>txt file version?</txtFileVersion>
  128. <fileDescription>a description</fileDescription>
  129. <copyright>my copyright</copyright>
  130. <productVersion>4.3.2.1</productVersion>
  131. <txtProductVersion>txt product version</txtProductVersion>
  132. <productName>GD3D</productName>
  133. <internalName>GD3D</internalName>
  134. <originalFilename>GD3D.exe</originalFilename>
  135. </versionInfo>
  136. </configuration>
  137. </execution>
  138. </executions>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>