2017-04-29 22:43:23 +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">
|
|
|
|
|
2014-09-11 09:21:06 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-10-04 13:06:25 +02:00
|
|
|
<groupId>yugecin</groupId>
|
|
|
|
<artifactId>opsu-dance</artifactId>
|
2017-01-16 11:55:01 +01:00
|
|
|
<version>0.5.0-SNAPSHOT</version>
|
2015-03-06 21:55:15 +01:00
|
|
|
<properties>
|
2017-04-28 22:43:13 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2015-08-26 00:00:34 +02:00
|
|
|
<version>${project.version}</version>
|
2015-03-06 21:55:15 +01:00
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
|
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
|
2017-01-16 21:53:48 +01:00
|
|
|
<mainClassName>yugecin.opsudance.core.Entrypoint</mainClassName>
|
2015-08-29 16:51:10 +02:00
|
|
|
<XDG>false</XDG>
|
2015-03-06 21:55:15 +01:00
|
|
|
</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>
|
2017-04-29 22:43:23 +02:00
|
|
|
<exclude>**.pdn</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>
|
2017-04-29 22:43:23 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>2.4.1</version>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>${project.basedir}/mvnlibs</directory>
|
|
|
|
<followSymlinks>true</followSymlinks>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.basedir}/mvnlibs</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-09-11 09:21:06 +02:00
|
|
|
<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>
|
2016-12-04 23:54:53 +01:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2014-09-11 09:21:06 +02:00
|
|
|
<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>
|
|
|
|
<argument>-cp</argument>
|
|
|
|
<classpath />
|
2015-08-26 00:00:34 +02:00
|
|
|
<argument>${mainClassName}</argument>
|
2015-01-14 05:00:09 +01:00
|
|
|
</arguments>
|
2017-04-28 22:43:13 +02:00
|
|
|
<workingDirectory>${project.build.outputDirectory}/../</workingDirectory>
|
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-08-26 00:00:34 +02:00
|
|
|
<version>2.4.1</version>
|
2014-09-11 09:21:06 +02:00
|
|
|
<configuration>
|
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>
|
2015-05-09 06:46:29 +02:00
|
|
|
<exclude>org/newdawn/slick/Input.*</exclude>
|
|
|
|
<exclude>org/newdawn/slick/Input$NullOutputStream.*</exclude>
|
2015-03-08 21:34:28 +01:00
|
|
|
<exclude>org/newdawn/slick/gui/TextField.*</exclude>
|
2015-02-12 09:52:19 +01:00
|
|
|
<exclude>org/newdawn/slick/openal/AudioInputStream*</exclude>
|
|
|
|
<exclude>org/newdawn/slick/openal/OpenALStreamPlayer*</exclude>
|
|
|
|
<exclude>org/newdawn/slick/openal/SoundStore*</exclude>
|
2017-04-30 18:24:56 +02:00
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
<filter>
|
|
|
|
<!-- sqlite contains sources for some reason -->
|
|
|
|
<artifact>*:sqlite-jdbc</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
<exclude>**/*.c</exclude>
|
2015-02-12 09:52:19 +01:00
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2015-08-26 00:00:34 +02:00
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2015-08-27 21:14:04 +02:00
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>${mainClassName}</Main-Class>
|
2015-08-29 16:51:10 +02:00
|
|
|
<Use-XDG>${XDG}</Use-XDG>
|
2015-08-27 21:14:04 +02:00
|
|
|
</manifestEntries>
|
2015-08-26 00:00:34 +02:00
|
|
|
</transformer>
|
|
|
|
</transformers>
|
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>
|
2015-07-08 01:37:03 +02:00
|
|
|
<version>2.9.3</version>
|
2015-08-28 18:07:03 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.java.jinput</groupId>
|
|
|
|
<artifactId>jinput</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-09-11 09:21:06 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slick2d</groupId>
|
|
|
|
<artifactId>slick2d-core</artifactId>
|
2015-07-08 01:37:03 +02:00
|
|
|
<version>1.0.1</version>
|
2015-08-28 18:07:03 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.lwjgl.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl</artifactId>
|
|
|
|
</exclusion>
|
2017-04-29 22:47:44 +02:00
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.jnlp</groupId>
|
|
|
|
<artifactId>jnlp-api</artifactId>
|
|
|
|
</exclusion>
|
2015-08-28 18:07:03 +02:00
|
|
|
</exclusions>
|
2014-09-11 09:21:06 +02:00
|
|
|
</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>
|
2017-04-30 00:49:39 +02:00
|
|
|
<artifactId>mp3spi</artifactId>
|
|
|
|
<version>1.9.5.4</version>
|
2017-04-29 22:47:44 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
2017-04-29 23:05:07 +02:00
|
|
|
<artifactId>junit</artifactId>
|
2017-04-29 22:47:44 +02:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-09-11 09:21:06 +02:00
|
|
|
</dependency>
|
2015-01-28 09:47:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
2015-09-17 17:20:21 +02:00
|
|
|
<version>3.8.10.2</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>
|
2015-07-08 01:37:03 +02:00
|
|
|
<version>3.3.3</version>
|
2015-03-07 10:17:19 +01:00
|
|
|
</dependency>
|
2015-03-09 23:32:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2015-07-08 01:37:03 +02:00
|
|
|
<version>1.9</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.tukaani</groupId>
|
|
|
|
<artifactId>xz</artifactId>
|
|
|
|
<version>1.5</version>
|
2015-03-09 23:32:43 +01:00
|
|
|
</dependency>
|
2015-03-10 23:10:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.jponge</groupId>
|
|
|
|
<artifactId>lzma-java</artifactId>
|
2015-07-08 01:37:03 +02:00
|
|
|
<version>1.3</version>
|
2015-03-10 23:10:51 +01:00
|
|
|
</dependency>
|
2017-04-29 22:43:23 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>gov.nist.math</groupId>
|
|
|
|
<artifactId>jama</artifactId>
|
|
|
|
<version>1.0.3</version>
|
|
|
|
</dependency>
|
2014-09-11 09:21:06 +02:00
|
|
|
</dependencies>
|
2017-04-29 22:43:23 +02:00
|
|
|
|
2015-08-26 00:00:34 +02:00
|
|
|
</project>
|