Stargate/pom.xml

71 lines
2.1 KiB
XML
Raw Normal View History

2015-01-27 13:08:08 +01:00
<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>net.knarcraft</groupId>
2015-01-27 13:08:08 +01:00
<artifactId>Stargate</artifactId>
2021-02-07 16:34:13 +01:00
<version>0.9.0.0</version>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
</license>
</licenses>
2015-01-27 13:08:08 +01:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2015-01-27 13:08:08 +01:00
</properties>
2015-01-27 13:08:08 +01:00
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
<repository>
<id>vault-repo</id>
2016-10-03 00:11:59 +02:00
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
2015-01-27 13:08:08 +01:00
</repository>
</repositories>
2015-01-27 13:08:08 +01:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.5-R0.1-SNAPSHOT</version>
2015-01-27 13:08:08 +01:00
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
2019-06-21 08:44:37 +02:00
<version>1.7</version>
2015-01-27 13:08:08 +01:00
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.seeseemelk</groupId>
<artifactId>MockBukkit-v1.16</artifactId>
<version>0.24.0</version>
<scope>test</scope>
</dependency>
</dependencies>
2015-01-27 13:08:08 +01:00
<build>
<sourceDirectory>src/main/java</sourceDirectory>
2017-06-20 08:35:08 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
2017-06-20 08:35:08 +02:00
</configuration>
</plugin>
</plugins>
2015-01-27 13:08:08 +01:00
</build>
</project>