2016-07-09 02:41:45 +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>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-shade</artifactId>
|
2016-07-10 01:49:22 +02:00
|
|
|
<version>${parent.version}</version>
|
2016-07-09 02:41:45 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>dungeonsxl-shade</name>
|
|
|
|
<parent>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl</artifactId>
|
2016-07-24 13:43:40 +02:00
|
|
|
<version>0.14.4</version>
|
2016-07-09 02:41:45 +02:00
|
|
|
</parent>
|
|
|
|
<build>
|
2016-07-12 02:11:49 +02:00
|
|
|
<finalName>dungeonsxl-${project.version}${buildNo}</finalName>
|
2016-07-09 02:41:45 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.4.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>io.github.dre2n.commons</pattern>
|
|
|
|
<shadedPattern>io.github.dre2n.dungeonsxl.util.commons</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>io.github.dre2n:commons</include>
|
|
|
|
<include>io.github.dre2n:caliburn</include>
|
|
|
|
<include>io.github.dre2n:debukkit</include>
|
|
|
|
<include>io.github.dre2n:dungeonsxl-*</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-abstract</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-core</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-craftbukkit_1_10_R1</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-07-09 03:05:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-craftbukkit_1_9_R2</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-craftbukkit_1_9_R1</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-07-09 02:41:45 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|