2014-07-08 23:10:12 +02: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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-parent</artifactId>
|
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>minecraft-server</artifactId>
|
2014-07-09 05:05:35 +02:00
|
|
|
<version>1.7.10-SNAPSHOT</version>
|
2014-07-08 23:10:12 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Minecraft Server</name>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>repobo-snap</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>minecraft-server</artifactId>
|
2014-07-09 05:05:35 +02:00
|
|
|
<version>1.7.10</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-handler</artifactId>
|
|
|
|
<version>4.0.21.Final</version>
|
2014-07-08 23:10:12 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2014-07-09 05:05:35 +02:00
|
|
|
<configuration>
|
|
|
|
<filters>
|
|
|
|
<!-- Exclude old Netty version -->
|
|
|
|
<filter>
|
|
|
|
<artifact>org.bukkit:minecraft-server</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>net/minecraft/util/io/netty/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
<relocations>
|
|
|
|
<!-- Relocate new version to the correct place -->
|
|
|
|
<relocation>
|
|
|
|
<pattern>io.netty</pattern>
|
|
|
|
<shadedPattern>net.minecraft.util.io.netty</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
2014-07-08 23:10:12 +02:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|