mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-05 02:09:48 +01:00
33 lines
1.3 KiB
XML
33 lines
1.3 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-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>
|
|
<dependency>
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
<artifactId>dungeonsxl-adapter</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<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>
|