mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-19 17:15:12 +01:00
33 lines
1.2 KiB
XML
33 lines
1.2 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.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-addon-core</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<packaging>jar</packaging>
|
|
<parent>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-addon</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>src/main/resources/</directory>
|
|
<includes>
|
|
<include>plugin.yml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>${spigotVersion.latest}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|