NPCLib/commons/pom.xml

52 lines
1.5 KiB
XML
Raw Normal View History

2018-04-26 13:52:49 +02:00
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.jitse</groupId>
<artifactId>npclib</artifactId>
2019-06-03 12:26:15 +02:00
<version>1.5-SNAPSHOT</version>
2018-04-26 13:52:49 +02:00
</parent>
<artifactId>npclib-commons</artifactId>
<!--
<build>
<resources>
<resource>
<targetPath>.</targetPath>
<directory>${basedir}/src/main/java/net/jitse/npclib</directory>
<filtering>true</filtering>
<includes>
<include>NPCLib.java</include>
</includes>
</resource>
</resources>
</build>
-->
2019-02-21 10:19:27 +01:00
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
2018-05-05 19:14:23 +02:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2019-05-02 18:15:15 +02:00
<version>1.13.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.33.Final</version>
<scope>provided</scope>
</dependency>
2018-05-05 19:14:23 +02:00
</dependencies>
2018-04-26 13:52:49 +02:00
</project>