12
1
FightSystem/pom.xml

79 Zeilen
2.4 KiB
XML

2019-03-26 12:00:56 +01: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>
2019-09-05 18:26:13 +02:00
<groupId>de.steamwar</groupId>
2019-03-26 12:00:56 +01:00
<artifactId>FightSystem</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<url>https://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>maven</id>
2019-05-28 11:54:46 +02:00
<url>https://steamwar.de:81/maven/</url>
2019-03-26 12:00:56 +01:00
</repository>
</repositories>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/*.kt</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
2019-09-05 18:26:13 +02:00
<source>8</source>
<target>8</target>
2019-03-26 12:00:56 +01:00
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
2019-06-08 12:57:08 +02:00
<groupId>steamwar</groupId>
<artifactId>Spigot</artifactId>
<version>1.0</version>
2019-03-26 12:00:56 +01:00
<scope>provided</scope>
</dependency>
<dependency>
2019-05-28 11:54:46 +02:00
<groupId>steamwar</groupId>
2019-03-26 12:00:56 +01:00
<artifactId>SpigotCore</artifactId>
2019-11-10 17:29:59 +01:00
<version>2.0</version>
2019-03-26 12:00:56 +01:00
<scope>provided</scope>
</dependency>
<dependency>
2019-05-28 11:54:46 +02:00
<groupId>steamwar</groupId>
2019-03-26 12:00:56 +01:00
<artifactId>WorldEdit</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
2019-05-28 11:54:46 +02:00
<groupId>steamwar</groupId>
2019-03-26 12:00:56 +01:00
<artifactId>FAWE</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
2019-04-23 18:33:18 +02:00
<dependency>
2019-05-28 11:54:46 +02:00
<groupId>steamwar</groupId>
2019-04-23 18:33:18 +02:00
<artifactId>ProtocolLib</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
2019-03-26 12:00:56 +01:00
</dependencies>
</project>