NPCLib/nms/v1_8_R1/pom.xml

49 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>
2019-08-03 13:47:12 +02:00
<packaging>jar</packaging>
2018-04-26 13:52:49 +02:00
<parent>
<groupId>net.jitse</groupId>
<artifactId>npclib-nms</artifactId>
2019-10-05 17:44:01 +02:00
<version>2.1-SNAPSHOT</version>
2018-04-26 13:52:49 +02:00
</parent>
<artifactId>npclib-nms-v1_8_R1</artifactId>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2018-08-18 14:37:05 +02:00
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
<scope>compile</scope>
</dependency>
2018-04-26 13:52:49 +02:00
</dependencies>
2019-08-03 13:47:12 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2018-04-26 13:52:49 +02:00
</project>