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-bukkit_magicvalues</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>
|
|
|
|
<dependencies>
|
2020-01-12 16:10:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
|
|
<artifactId>dungeonsxl-adapter</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-06-13 02:01:56 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
|
|
<artifactId>dungeonsxl-api</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|