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>
|
2019-03-23 00:18:56 +01:00
|
|
|
<version>0.17.8-SNAPSHOT</version>
|
2017-07-21 18:33:21 +02:00
|
|
|
<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>
|
2018-12-22 20:04:40 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
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>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2018-12-22 20:04:40 +01:00
|
|
|
<version>3.2.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>
|
2018-10-05 21:06:58 +02:00
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2018-10-27 17:58:33 +02:00
|
|
|
<version>1.13.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>
|
2018-09-24 01:19:22 +02:00
|
|
|
<version>1.7</version>
|
2016-03-01 22:08:07 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</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-12-16 23:31:15 +01:00
|
|
|
<version>0.5.4</version>
|
2018-10-05 21:06:58 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.erethon</groupId>
|
|
|
|
<artifactId>commons</artifactId>
|
2019-01-16 23:03:19 +01:00
|
|
|
<version>5.1.5</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>
|
2019-02-21 18:52:47 +01:00
|
|
|
<version>2.0.24-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>
|
2019-02-21 18:52:47 +01:00
|
|
|
<version>2.7.5</version>
|
2016-08-02 21:04:26 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-06-09 00:03:19 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.griefcraft</groupId>
|
2019-02-17 22:13:41 +01:00
|
|
|
<artifactId>Modern-LWC</artifactId>
|
|
|
|
<version>2.1.2</version>
|
2018-06-09 00:03:19 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-03-07 21:22:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.9.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-03-01 22:08:07 +01:00
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
2019-02-21 18:52:47 +01:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2016-03-01 22:08:07 +01:00
|
|
|
</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>
|
2018-04-21 15:49:29 +02:00
|
|
|
<repository>
|
|
|
|
<id>filoghost-repo</id>
|
|
|
|
<url>https://ci.filoghost.me/plugin/repository/everything/</url>
|
|
|
|
</repository>
|
2019-03-07 21:22:40 +01:00
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</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>
|