2016-07-09 02:41:45 +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>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-core</artifactId>
|
2016-07-10 01:49:22 +02:00
|
|
|
<version>${parent.version}</version>
|
2016-07-09 02:41:45 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>dungeonsxl-core</name>
|
|
|
|
<parent>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl</artifactId>
|
2017-01-27 23:08:00 +01:00
|
|
|
<version>0.15.7-SNAPSHOT</version>
|
2016-07-09 02:41:45 +02:00
|
|
|
</parent>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/main/resources/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-abstract</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-11-14 19:13:58 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-craftbukkit_1_11_R1</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-07-09 02:41:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-craftbukkit_1_10_R1</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-07-09 03:05:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-craftbukkit_1_9_R2</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.dre2n</groupId>
|
|
|
|
<artifactId>dungeonsxl-craftbukkit_1_9_R1</artifactId>
|
|
|
|
<version>${parent.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-07-09 02:41:45 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|