2014-09-11 09:21:06 +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>
|
|
|
|
<groupId>itdelatrisu</groupId>
|
|
|
|
<artifactId>opsu</artifactId>
|
2015-02-22 04:30:47 +01:00
|
|
|
<version>0.6.0</version>
|
2015-03-06 21:55:15 +01:00
|
|
|
<properties>
|
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
|
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
|
|
|
|
</properties>
|
2014-09-11 09:21:06 +02:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
2015-03-06 21:55:15 +01:00
|
|
|
<filtering>false</filtering>
|
2014-09-11 09:21:06 +02:00
|
|
|
<directory>res</directory>
|
2015-01-13 03:05:58 +01:00
|
|
|
<excludes>
|
|
|
|
<exclude>**/Thumbs.db</exclude>
|
2015-03-06 21:55:15 +01:00
|
|
|
<exclude>**/version</exclude>
|
2015-01-13 03:05:58 +01:00
|
|
|
</excludes>
|
2014-09-11 09:21:06 +02:00
|
|
|
</resource>
|
2015-03-06 21:55:15 +01:00
|
|
|
<resource>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>res</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/version</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2014-09-11 09:21:06 +02:00
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2015-01-13 03:05:58 +01:00
|
|
|
<version>3.2</version>
|
2014-09-11 09:21:06 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.googlecode.mavennatives</groupId>
|
|
|
|
<artifactId>maven-nativedependencies-plugin</artifactId>
|
|
|
|
<version>0.0.7</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpacknatives</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
2015-01-13 03:05:58 +01:00
|
|
|
<version>1.3.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>run</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>exec</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<skip>${jar}</skip>
|
|
|
|
<executable>java</executable>
|
|
|
|
<arguments>
|
2015-02-07 23:43:31 +01:00
|
|
|
<argument>-Djava.library.path=${project.build.directory}/natives</argument>
|
2015-01-13 03:05:58 +01:00
|
|
|
<argument>-cp</argument>
|
|
|
|
<classpath />
|
|
|
|
<argument>itdelatrisu.opsu.Opsu</argument>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>jarsplice</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>exec</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<executable>java</executable>
|
|
|
|
<workingDirectory>${basedir}/target</workingDirectory>
|
|
|
|
<arguments>
|
|
|
|
<argument>-jar</argument>
|
2015-02-07 23:43:31 +01:00
|
|
|
<argument>-Dinput=opsu-${project.version}.jar</argument>
|
|
|
|
<argument>-Dmain=itdelatrisu.opsu.Opsu</argument>
|
|
|
|
<argument>-Doutput=opsu-${project.version}-runnable.jar</argument>
|
2015-02-13 21:03:17 +01:00
|
|
|
<!-- uncomment the line below to use XDG base directories in Unix -->
|
|
|
|
<!--<argument>-Dparams=-DXDG=true</argument>-->
|
2015-01-13 03:05:58 +01:00
|
|
|
<argument>${basedir}/tools/JarSplicePlus.jar</argument>
|
2015-01-14 05:00:09 +01:00
|
|
|
</arguments>
|
2015-01-13 03:05:58 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2014-09-11 09:21:06 +02:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2015-01-13 03:05:58 +01:00
|
|
|
<version>2.3</version>
|
2014-09-11 09:21:06 +02:00
|
|
|
<configuration>
|
2015-01-13 03:05:58 +01:00
|
|
|
<!--
|
2014-09-11 09:21:06 +02:00
|
|
|
<artifactSet>
|
|
|
|
<excludes>
|
|
|
|
<exclude>*:*:natives*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</artifactSet>
|
2015-01-13 03:05:58 +01:00
|
|
|
-->
|
2015-02-12 09:52:19 +01:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<!-- Overwritten classes -->
|
|
|
|
<artifact>org.slick2d:slick2d-core</artifact>
|
|
|
|
<excludes>
|
2015-03-07 01:16:43 +01:00
|
|
|
<exclude>org/newdawn/slick/GameContainer.*</exclude>
|
2015-02-19 06:33:32 +01:00
|
|
|
<exclude>org/newdawn/slick/Image.*</exclude>
|
2015-02-12 09:52:19 +01:00
|
|
|
<exclude>org/newdawn/slick/Music.*</exclude>
|
|
|
|
<exclude>org/newdawn/slick/openal/AudioInputStream*</exclude>
|
|
|
|
<exclude>org/newdawn/slick/openal/OpenALStreamPlayer*</exclude>
|
|
|
|
<exclude>org/newdawn/slick/openal/SoundStore*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2014-09-11 09:21:06 +02:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
</configuration>
|
2015-01-13 03:05:58 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2014-09-11 09:21:06 +02:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slick2d</groupId>
|
|
|
|
<artifactId>slick2d-core</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jcraft</groupId>
|
|
|
|
<artifactId>jorbis</artifactId>
|
|
|
|
<version>0.0.17</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.lingala.zip4j</groupId>
|
|
|
|
<artifactId>zip4j</artifactId>
|
|
|
|
<version>1.3.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-02-22 04:27:16 +01:00
|
|
|
<groupId>com.googlecode.soundlibs</groupId>
|
2014-09-11 09:21:06 +02:00
|
|
|
<artifactId>jlayer</artifactId>
|
2015-02-22 04:27:16 +01:00
|
|
|
<version>1.0.1-1</version>
|
2014-09-11 09:21:06 +02:00
|
|
|
</dependency>
|
2015-02-18 01:03:48 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.soundlibs</groupId>
|
|
|
|
<artifactId>mp3spi</artifactId>
|
|
|
|
<version>1.9.5-1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.soundlibs</groupId>
|
|
|
|
<artifactId>tritonus-share</artifactId>
|
|
|
|
<version>0.3.7-2</version>
|
|
|
|
</dependency>
|
2015-01-28 09:47:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
2015-02-14 22:42:33 +01:00
|
|
|
<version>3.8.6</version>
|
2015-01-28 09:47:24 +01:00
|
|
|
</dependency>
|
2015-02-01 08:10:17 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>20140107</version>
|
|
|
|
</dependency>
|
2015-02-12 08:27:33 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
<version>4.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna-platform</artifactId>
|
|
|
|
<version>4.1.0</version>
|
|
|
|
</dependency>
|
2015-03-07 10:17:19 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
<version>3.0.3</version>
|
|
|
|
</dependency>
|
2014-09-11 09:21:06 +02:00
|
|
|
</dependencies>
|
2015-02-07 23:43:31 +01:00
|
|
|
</project>
|