Ginger3D/dependency-reduced-pom.xml

65 lines
1.9 KiB
XML
Raw Normal View History

2019-05-26 04:05:34 +00:00
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.hydos</groupId>
<artifactId>ginger</artifactId>
<name>gingerEngine</name>
<version>NIGHTLY</version>
<description>an engine for 3d java game development</description>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<transformers>
<transformer>
<mainClass>io.github.hydos.ginger.Starter</mainClass>
</transformer>
</transformers>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>lwjgl-natives-linux</id>
<properties>
<lwjgl.natives>natives-linux</lwjgl.natives>
</properties>
</profile>
<profile>
<id>lwjgl-natives-macos</id>
<properties>
<lwjgl.natives>natives-macos</lwjgl.natives>
</properties>
</profile>
<profile>
<id>lwjgl-natives-windows</id>
<properties>
<lwjgl.natives>natives-windows</lwjgl.natives>
</properties>
</profile>
</profiles>
2020-02-20 08:45:26 +00:00
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
2019-05-26 04:05:34 +00:00
<properties>
<lwjgl.version>3.2.2</lwjgl.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>