101 Zeilen
3.6 KiB
XML
101 Zeilen
3.6 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>de.quantumnanox</groupId>
|
||
|
<artifactId>WarShipFactory</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>WarShipFactory</name>
|
||
|
<url>http://maven.apache.org</url>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>sk89q-snapshots</id>
|
||
|
<url>http://maven.sk89q.com/artifactory/repo</url>
|
||
|
<releases>
|
||
|
<enabled>true</enabled> <!-- releases enabled: this specific repository also hosts release versions -->
|
||
|
</releases>
|
||
|
<snapshots>
|
||
|
<enabled>true</enabled> <!-- snapshots enabled: we declare a SNAPSHOT repository because we need
|
||
|
to download a SNAPSHOT dependency -->
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>fawe-repo</id>
|
||
|
<url>http://ci.athion.net/job/FastAsyncWorldEdit/ws/mvn/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<build>
|
||
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/java</directory>
|
||
|
<excludes>
|
||
|
<exclude>**/*.java</exclude>
|
||
|
<exclude>**/*.kt</exclude>
|
||
|
</excludes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.3</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>C:\Users\andre\Desktop\intellj\spigot-1.12.2.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sk89q.worldedit</groupId>
|
||
|
<artifactId>worldedit-bukkit</artifactId>
|
||
|
<version>6.1.7.3</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>C:\Users\andre\Desktop\intellj\worldedit-bukkit-6.1.7.3.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sk89q.worldguard</groupId>
|
||
|
<artifactId>worldguard-bukkit</artifactId>
|
||
|
<version>6.2</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>C:\Users\andre\Desktop\intellj\worldguard-6.2.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.boydti</groupId>
|
||
|
<artifactId>fawe-api</artifactId>
|
||
|
<version>19.01.01-56a71fa-1244-22.0.6</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>C:\Users\andre\Desktop\intellj\FastAsyncWorldEdit-AllVersion.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.16.12</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|