100 lines
3.6 KiB
XML
100 lines
3.6 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-core</artifactId>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<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>de.cubbossa.cliententities.lib.packetevents.api</pattern>
|
|
<shadedPattern>org.ef3d0c3e.lib.packetevents.api</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>de.cubbossa.cliententities.lib.packetevents.impl</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>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.21.1-R0.1-SNAPSHOT</version>
|
|
<classifier>remapped-mojang</classifier>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-lang</artifactId>
|
|
<groupId>commons-lang</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>json-simple</artifactId>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.21.1-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.retrooper</groupId>
|
|
<artifactId>packetevents-spigot</artifactId>
|
|
<version>2.4.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
<artifactId>ProtocolLib</artifactId>
|
|
<version>5.2.0-SNAPSHOT-726</version>
|
|
<scope>system</scope>
|
|
<systemPath>${pom.basedir}/../libs/ProtocolLib.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
<version>7.3.6</version>
|
|
<scope>system</scope>
|
|
<systemPath>${pom.basedir}/../libs/worldedit-bukkit-7.3.6-SNAPSHOT-dist.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|