123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>xyz.tbvns</groupId>
- <artifactId>GD3D-rewrite</artifactId>
- <version>1.0-SNAPSHOT</version>
- <organization>
- <name>Tbvns</name>
- <url>https://github.com/tbvns</url>
- </organization>
- <inceptionYear>2024</inceptionYear>
- <description>A 3d importer for GD</description>
- <name>GD3D</name>
- <properties>
- <maven.compiler.source>21</maven.compiler.source>
- <maven.compiler.target>21</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <repositories>
- <repository>
- <id>JCenter</id>
- <url>https://jcenter.bintray.com/</url>
- </repository>
- <repository>
- <id>jitpack.io</id>
- <url>https://jitpack.io</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.openjfx</groupId>
- <artifactId>javafx-controls</artifactId>
- <version>21</version>
- </dependency>
- <dependency>
- <groupId>org.openjfx</groupId>
- <artifactId>javafx-fxml</artifactId>
- <version>21</version>
- </dependency>
- <dependency>
- <groupId>org.java-websocket</groupId>
- <artifactId>Java-WebSocket</artifactId>
- <version>1.5.6</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.vecmath/vecmath -->
- <dependency>
- <groupId>org.joml</groupId>
- <artifactId>joml</artifactId>
- <version>1.10.5</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.locationtech.jts.io/jts-io-common -->
- <dependency>
- <groupId>org.locationtech.jts.io</groupId>
- <artifactId>jts-io-common</artifactId>
- <version>1.19.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts-core -->
- <dependency>
- <groupId>org.locationtech.jts</groupId>
- <artifactId>jts-core</artifactId>
- <version>1.19.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts -->
- <dependency>
- <groupId>org.locationtech.jts</groupId>
- <artifactId>jts</artifactId>
- <version>1.19.0</version>
- <type>pom</type>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-web -->
- <dependency>
- <groupId>org.openjfx</groupId>
- <artifactId>javafx-web</artifactId>
- <version>23-ea+18</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- <archive>
- <manifest>
- <mainClass>xyz.tbvns.Main</mainClass>
- </manifest>
- </archive>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>com.akathist.maven.plugins.launch4j</groupId>
- <artifactId>launch4j-maven-plugin</artifactId>
- <version>2.5.0</version>
- <executions>
- <execution>
- <id>l4j-gui</id>
- <phase>package</phase>
- <goals><goal>launch4j</goal></goals>
- <configuration>
- <icon>GD3D.ico</icon>
- <classPath>
- <mainClass>xyz.tbvns.Main</mainClass>
- </classPath>
- <headerType>gui</headerType>
- <outfile>target/GD3D.exe</outfile>
- <jar>./target/GD3D-rewrite-1.0-SNAPSHOT-jar-with-dependencies.jar</jar>
- <errTitle>GD3D - Error:</errTitle>
- <jre>
- <minVersion>21</minVersion>
- </jre>
- <versionInfo>
- <fileVersion>1.2.3.4</fileVersion>
- <txtFileVersion>txt file version?</txtFileVersion>
- <fileDescription>a description</fileDescription>
- <copyright>my copyright</copyright>
- <productVersion>4.3.2.1</productVersion>
- <txtProductVersion>txt product version</txtProductVersion>
- <productName>GD3D</productName>
- <internalName>GD3D</internalName>
- <originalFilename>GD3D.exe</originalFilename>
- </versionInfo>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|