2016-03-01 22:08:07 +01: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>
|
2019-05-05 00:43:18 +02:00
|
|
|
<groupId>de.erethon.dungeonsxl</groupId>
|
|
|
|
<artifactId>dungeonsxl-parent</artifactId>
|
|
|
|
<version>0.18-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
2016-03-01 22:08:07 +01:00
|
|
|
<name>DungeonsXL</name>
|
|
|
|
<url>https://dre2n.github.io</url>
|
|
|
|
<description>Create custom dungeons and adventure maps with ease!</description>
|
2019-05-05 00:43:18 +02:00
|
|
|
<modules>
|
2020-01-12 16:10:08 +01:00
|
|
|
<module>adapter</module>
|
2019-06-13 02:01:56 +02:00
|
|
|
<module>api</module>
|
|
|
|
<module>bukkit_blockdata</module>
|
|
|
|
<module>bukkit_magicvalues</module>
|
2019-05-05 00:43:18 +02:00
|
|
|
<module>core</module>
|
|
|
|
<module>dist</module>
|
|
|
|
</modules>
|
2016-05-21 23:03:34 +02:00
|
|
|
<properties>
|
2016-06-05 23:51:33 +02:00
|
|
|
<buildNo></buildNo>
|
2018-12-22 20:04:40 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2020-02-02 03:03:29 +01:00
|
|
|
<spigotVersion.latest>1.15.2-R0.1-SNAPSHOT</spigotVersion.latest>
|
2016-05-21 23:03:34 +02:00
|
|
|
</properties>
|
2019-06-13 02:01:56 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.erethon.commons</groupId>
|
|
|
|
<artifactId>commons-dist</artifactId>
|
2020-03-09 21:18:56 +01:00
|
|
|
<version>6.1.3</version>
|
2019-06-13 02:01:56 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.erethon</groupId>
|
|
|
|
<artifactId>caliburn</artifactId>
|
2020-02-02 03:03:29 +01:00
|
|
|
<version>0.5.5</version>
|
2019-06-13 02:01:56 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.erethon.vignette</groupId>
|
|
|
|
<artifactId>vignette-dist</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-03-01 22:08:07 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
2019-02-21 18:52:47 +01:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2016-03-01 22:08:07 +01:00
|
|
|
</repository>
|
2018-02-14 16:31:41 +01:00
|
|
|
<repository>
|
|
|
|
<id>dre-repo</id>
|
2019-05-05 00:43:18 +02:00
|
|
|
<url>http://erethon.de/repo</url>
|
2018-02-14 16:31:41 +01:00
|
|
|
</repository>
|
2016-03-01 22:08:07 +01:00
|
|
|
</repositories>
|
|
|
|
</project>
|