2017-09-21 19:54:51 +02:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>forge</artifactId>
|
|
|
|
<groupId>forge</groupId>
|
2017-09-23 15:45:13 +02:00
|
|
|
<version>1.6.3</version>
|
2017-09-21 19:54:51 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>forge-gui-mobile-dev</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Forge Mobile Dev</name>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<attach>false</attach>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>forge.app.Main</mainClass>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<Implementation-Version>${fullversionstring}</Implementation-Version>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<!-- this is used for inheritance merges -->
|
|
|
|
<phase>package</phase>
|
|
|
|
<!-- bind to the packaging phase -->
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>forge</groupId>
|
|
|
|
<artifactId>forge-gui-mobile</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.badlogicgames.gdx</groupId>
|
|
|
|
<artifactId>gdx-backend-lwjgl</artifactId>
|
|
|
|
<version>1.5.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.badlogicgames.gdx</groupId>
|
|
|
|
<artifactId>gdx-platform</artifactId>
|
|
|
|
<version>1.2.0</version>
|
|
|
|
<classifier>natives-desktop</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.badlogicgames.gdx</groupId>
|
|
|
|
<artifactId>gdx-freetype-platform</artifactId>
|
|
|
|
<version>1.5.5</version>
|
|
|
|
<classifier>natives-desktop</classifier>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|