2016-03-01 22:08:07 +01: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>
|
2018-04-21 15:49:29 +02:00
|
|
|
<groupId>de.erethon</groupId>
|
2016-03-01 22:08:07 +01:00
|
|
|
<artifactId>dungeonsxl</artifactId>
|
2017-07-21 18:33:21 +02:00
|
|
|
<version>0.16-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
2016-03-01 22:08:07 +01:00
|
|
|
<name>DungeonsXL</name>
|
|
|
|
<url>https://dre2n.github.io</url>
|
|
|
|
<description>Create custom dungeons and adventure maps with ease!</description>
|
2016-05-21 23:03:34 +02:00
|
|
|
<properties>
|
2016-06-05 23:51:33 +02:00
|
|
|
<buildNo></buildNo>
|
2016-05-21 23:03:34 +02:00
|
|
|
</properties>
|
2017-07-21 18:33:21 +02:00
|
|
|
<build>
|
2018-05-08 21:34:37 +02:00
|
|
|
<finalName>${project.artifactId}-${project.version}${buildNo}</finalName>
|
2017-07-21 18:33:21 +02:00
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/main/resources/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2018-04-21 15:49:29 +02:00
|
|
|
<version>3.7.0</version>
|
2017-07-21 18:33:21 +02:00
|
|
|
<configuration>
|
2018-04-26 00:33:04 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2017-07-21 18:33:21 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2018-04-21 15:49:29 +02:00
|
|
|
<version>3.1.1</version>
|
2017-07-21 18:33:21 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
2018-05-08 21:34:37 +02:00
|
|
|
<include>de.erethon:caliburn</include>
|
2018-02-14 16:31:41 +01:00
|
|
|
<include>de.erethon:commons</include>
|
2017-07-21 18:33:21 +02:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
2018-02-14 16:31:41 +01:00
|
|
|
<pattern>de.erethon.commons</pattern>
|
2018-05-03 21:54:25 +02:00
|
|
|
<shadedPattern>de.erethon.dungeonsxl.util.commons</shadedPattern>
|
2017-07-21 18:33:21 +02:00
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-03-01 22:08:07 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2016-05-14 02:25:56 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
2016-07-09 02:41:45 +02:00
|
|
|
<artifactId>spigot-api</artifactId>
|
2017-09-21 18:15:49 +02:00
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
2016-03-01 22:08:07 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
2017-07-21 18:33:21 +02:00
|
|
|
<version>1.6</version>
|
2016-03-01 22:08:07 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-02-14 16:31:41 +01:00
|
|
|
<groupId>de.erethon</groupId>
|
2016-03-01 22:08:07 +01:00
|
|
|
<artifactId>commons</artifactId>
|
2018-04-21 15:49:29 +02:00
|
|
|
<version>4.1</version>
|
2018-02-12 00:00:45 +01:00
|
|
|
<scope>compile</scope>
|
2016-03-01 22:08:07 +01:00
|
|
|
</dependency>
|
2016-05-31 18:01:19 +02:00
|
|
|
<dependency>
|
2018-05-08 21:34:37 +02:00
|
|
|
<groupId>de.erethon</groupId>
|
2016-05-31 18:01:19 +02:00
|
|
|
<artifactId>caliburn</artifactId>
|
2018-05-08 21:34:37 +02:00
|
|
|
<version>0.4-SNAPSHOT</version>
|
2018-02-12 00:00:45 +01:00
|
|
|
<scope>compile</scope>
|
2016-05-31 18:01:19 +02:00
|
|
|
</dependency>
|
2016-03-01 22:08:07 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>commandsxl</artifactId>
|
|
|
|
<version>2.1.2</version>
|
2018-02-12 00:00:45 +01:00
|
|
|
<scope>provided</scope>
|
2016-03-01 22:08:07 +01:00
|
|
|
</dependency>
|
2016-05-01 00:20:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.citizensnpcs</groupId>
|
2016-07-01 02:41:22 +02:00
|
|
|
<artifactId>citizens</artifactId>
|
2018-04-21 15:49:29 +02:00
|
|
|
<version>2.0.22-SNAPSHOT</version>
|
2016-05-01 00:20:44 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-06-20 16:03:16 +02:00
|
|
|
<dependency>
|
2018-04-21 15:49:29 +02:00
|
|
|
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
|
|
|
|
<artifactId>holographicdisplays-api</artifactId>
|
|
|
|
<version>2.2.7-SNAPSHOT</version>
|
2018-02-12 00:00:45 +01:00
|
|
|
<scope>provided</scope>
|
2016-06-20 16:03:16 +02:00
|
|
|
</dependency>
|
2016-08-02 21:04:26 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.black_ixx</groupId>
|
|
|
|
<artifactId>BossShop</artifactId>
|
|
|
|
<version>2.6.9</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-03-01 22:08:07 +01:00
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2018-04-21 15:49:29 +02:00
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
2016-03-01 22:08:07 +01:00
|
|
|
</repository>
|
2016-05-01 00:20:44 +02:00
|
|
|
<repository>
|
|
|
|
<id>citizens-repo</id>
|
|
|
|
<url>http://repo.citizensnpcs.co/</url>
|
|
|
|
</repository>
|
2016-09-11 22:20:29 +02:00
|
|
|
<repository>
|
|
|
|
<id>inventive-repo</id>
|
|
|
|
<url>http://repo.inventivetalent.org/content/groups/public/</url>
|
|
|
|
</repository>
|
2018-04-21 15:49:29 +02:00
|
|
|
<repository>
|
|
|
|
<id>filoghost-repo</id>
|
|
|
|
<url>https://ci.filoghost.me/plugin/repository/everything/</url>
|
|
|
|
</repository>
|
2016-06-27 20:24:03 +02:00
|
|
|
<repository>
|
2018-02-14 16:31:41 +01:00
|
|
|
<id>sataniel-repo</id>
|
2016-06-27 20:24:03 +02:00
|
|
|
<url>http://feuerstern.bplaced.net/repo/</url>
|
|
|
|
</repository>
|
2018-02-14 16:31:41 +01:00
|
|
|
<repository>
|
|
|
|
<id>dre-repo</id>
|
|
|
|
<url>http://erethon.de/repo/</url>
|
|
|
|
</repository>
|
2016-03-01 22:08:07 +01:00
|
|
|
</repositories>
|
|
|
|
</project>
|