Surge-Files/X-Prison-master/modules/v1_8_R1/pom.xml

50 lines
1.7 KiB
XML
Raw Normal View History

2023-10-14 05:00:56 +02:00
<?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_8_R1</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>11</version>
<scope>system</scope>
<systemPath>${project.basedir}/../../libs/spigot/spigot-1.8-R0.1-SNAPSHOT-latest.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>