2016-02-28 23:44:33 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-03-03 21:13:49 +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">
|
2016-02-28 23:44:33 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>us.myles</groupId>
|
|
|
|
<artifactId>ViaVersion</artifactId>
|
2016-03-06 14:52:38 +01:00
|
|
|
<version>0.5.4</version>
|
2016-02-28 23:44:33 +01:00
|
|
|
<build>
|
2016-03-05 14:37:01 +01:00
|
|
|
<finalName>ViaVersion-${project.version}</finalName>
|
2016-02-28 23:44:33 +01:00
|
|
|
<plugins>
|
2016-03-03 21:13:49 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-02-28 23:44:33 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-03-05 14:37:01 +01:00
|
|
|
<version>3.5.1</version>
|
2016-02-28 23:44:33 +01:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2016-03-03 14:28:26 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2016-02-28 23:44:33 +01:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
2016-03-03 21:13:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spacehq</groupId>
|
|
|
|
<artifactId>opennbt</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-02-29 18:35:55 +01:00
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
<version>4.0.20.Final</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>18.0</version>
|
|
|
|
<scope>provided</scope>
|
2016-02-28 23:44:33 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-02-29 21:38:54 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2016-03-03 21:13:49 +01:00
|
|
|
<repository>
|
|
|
|
<id>spacehq-repo</id>
|
|
|
|
<url>https://repo.spacehq.org/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2016-02-29 21:38:54 +01:00
|
|
|
</project>
|