1
0
mirror of https://github.com/nkomarn/harbor.git synced 2024-11-22 09:55:13 +01:00
Harbor-Minecraft/pom.xml

46 lines
1.6 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8" ?>
2020-11-10 19:28:57 +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>xyz.nkomarn</groupId>
<artifactId>Harbor</artifactId>
<version>1.6.3-SNAPSHOT</version>
2019-09-09 06:47:35 +02:00
2020-11-10 19:28:57 +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>
</properties>
2019-05-08 03:24:46 +02:00
2020-11-10 19:28:57 +01:00
<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>ess-repo</id>
<url>https://ci.ender.zone/plugin/repository/everything/</url>
</repository>
</repositories>
2019-09-09 06:47:35 +02:00
2020-11-10 19:28:57 +01:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
2020-11-13 22:57:46 +01:00
<artifactId>spigot-api</artifactId>
2020-11-10 19:28:57 +01:00
<version>1.14.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.ess3</groupId>
<artifactId>EssentialsX</artifactId>
<version>2.17.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>20.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>