49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>
|
||
|
|
||
|
<artifactId>x-prison-v1_13_R2</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>dev.drawethree</groupId>
|
||
|
<artifactId>X-Prison</artifactId>
|
||
|
<version>1.12.11</version>
|
||
|
<relativePath>../../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.7.0</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>internal</groupId>
|
||
|
<artifactId>craftbukkit</artifactId>
|
||
|
<version>1.13.2</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/../../libs/spigot/spigot-1.13.2.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>dev.drawethree</groupId>
|
||
|
<artifactId>x-prison-core</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>internal</groupId>
|
||
|
<artifactId>spigot</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|