2019-06-13 02:01:56 +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>de.erethon.dungeonsxl</groupId>
|
|
|
|
<artifactId>dungeonsxl-api</artifactId>
|
|
|
|
<version>0.18-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
|
|
<artifactId>dungeonsxl-parent</artifactId>
|
|
|
|
<version>0.18-SNAPSHOT</version>
|
|
|
|
</parent>
|
2020-01-24 17:27:54 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2020-03-21 16:36:46 +01:00
|
|
|
<version>3.2.0</version>
|
2020-01-24 17:27:54 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>javadoc</goal>
|
2020-03-21 16:36:46 +01:00
|
|
|
<goal>jar</goal>
|
2020-01-24 17:27:54 +01:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-03-16 17:45:14 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-06-28 00:45:46 +02:00
|
|
|
<version>3.2.4</version>
|
2020-03-16 17:45:14 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>de.erethon.commons:commons-dist</include>
|
|
|
|
</includes>
|
2020-11-02 21:18:00 +01:00
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>de.erethon.commons</pattern>
|
|
|
|
<shadedPattern>de.erethon.dungeonsxl.util.commons</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2020-03-16 17:45:14 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-01-24 17:27:54 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-06-13 02:01:56 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2019-06-25 22:36:24 +02:00
|
|
|
<version>${spigotVersion.latest}</version>
|
2019-06-13 02:01:56 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-11-04 15:16:34 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.erethon.commons</groupId>
|
|
|
|
<artifactId>commons-dist</artifactId>
|
2021-07-04 16:16:08 +02:00
|
|
|
<version>6.2.4</version>
|
2020-11-04 15:16:34 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2019-06-13 02:01:56 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|