mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-02 17:00:19 +01:00
41 lines
1.5 KiB
XML
41 lines
1.5 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>io.github.dre2n</groupId>
|
|
<artifactId>dungeonsxl-craftbukkit_1_10_R1</artifactId>
|
|
<version>${parent.version}</version>
|
|
<packaging>jar</packaging>
|
|
<name>dungeonsxl-craftbukkit_1_10_R1</name>
|
|
<parent>
|
|
<groupId>io.github.dre2n</groupId>
|
|
<artifactId>dungeonsxl</artifactId>
|
|
<version>0.15.1</version>
|
|
</parent>
|
|
<build>
|
|
<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>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.dre2n</groupId>
|
|
<artifactId>dungeonsxl-abstract</artifactId>
|
|
<version>${parent.version}</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|