mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-02 17:00:19 +01:00
145 lines
5.4 KiB
XML
145 lines
5.4 KiB
XML
<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>de.erethon</groupId>
|
|
<artifactId>dungeonsxl</artifactId>
|
|
<version>0.16-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
<name>DungeonsXL</name>
|
|
<url>https://dre2n.github.io</url>
|
|
<description>Create custom dungeons and adventure maps with ease!</description>
|
|
<properties>
|
|
<buildNo></buildNo>
|
|
</properties>
|
|
<build>
|
|
<finalName>${project.artifactId}-${project.version}${buildNo}</finalName>
|
|
<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>
|
|
<version>3.7.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>de.erethon:caliburn</include>
|
|
<include>de.erethon:commons</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>de.erethon.commons</pattern>
|
|
<shadedPattern>de.erethon.dungeonsxl.util.commons</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.6</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.erethon</groupId>
|
|
<artifactId>commons</artifactId>
|
|
<version>4.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.erethon</groupId>
|
|
<artifactId>caliburn</artifactId>
|
|
<version>0.4-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.dre2n</groupId>
|
|
<artifactId>commandsxl</artifactId>
|
|
<version>2.1.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.citizensnpcs</groupId>
|
|
<artifactId>citizens</artifactId>
|
|
<version>2.0.22-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
|
|
<artifactId>holographicdisplays-api</artifactId>
|
|
<version>2.2.7-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.black_ixx</groupId>
|
|
<artifactId>BossShop</artifactId>
|
|
<version>2.6.9</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>vault-repo</id>
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>citizens-repo</id>
|
|
<url>http://repo.citizensnpcs.co/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>inventive-repo</id>
|
|
<url>http://repo.inventivetalent.org/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>filoghost-repo</id>
|
|
<url>https://ci.filoghost.me/plugin/repository/everything/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sataniel-repo</id>
|
|
<url>http://feuerstern.bplaced.net/repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>dre-repo</id>
|
|
<url>http://erethon.de/repo/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|