50 lines
1.8 KiB
XML
50 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<artifactId>SheepWars</artifactId>
|
|
<groupId>org.ef3d0c3e.sheepwars</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>SheepWars-dist</artifactId>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<finalName>SheepWars</finalName>
|
|
<outputDirectory>/home/baraquiel/Programming/Minecraft/Sheepwars211/plugins</outputDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.6.0</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.github.retrooper.packetevents</pattern>
|
|
<shadedPattern>org.ef3d0c3e.lib.packetevents.api</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>io.github.retrooper.packetevents</pattern>
|
|
<shadedPattern>org.ef3d0c3e.lib.packetevents.impl</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>fr.mrmicky.fastboard</pattern>
|
|
<shadedPattern>org.ef3d0c3e.lib.fastboard</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|