2021-12-07 03:35:30 +00:00
|
|
|
<?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/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>LibsDisguises</artifactId>
|
|
|
|
<groupId>LibsDisguises</groupId>
|
2021-12-23 04:12:14 +00:00
|
|
|
<version>10.0.27-SNAPSHOT</version>
|
2022-03-04 18:58:40 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2021-12-07 03:35:30 +00:00
|
|
|
</parent>
|
|
|
|
|
2021-12-11 06:25:17 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-12-07 03:35:30 +00:00
|
|
|
<artifactId>v1_18_R1</artifactId>
|
|
|
|
|
2021-12-25 01:30:18 +00:00
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-03-04 18:58:40 +00:00
|
|
|
|
|
|
|
<spigot.version>1.18-R0.1-SNAPSHOT</spigot.version>
|
2021-12-25 01:30:18 +00:00
|
|
|
</properties>
|
|
|
|
|
2021-12-07 03:35:30 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2022-03-04 18:58:40 +00:00
|
|
|
<version>${spigot.version}</version>
|
2021-12-07 03:35:30 +00:00
|
|
|
<classifier>remapped-mojang</classifier>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2022-03-04 18:58:40 +00:00
|
|
|
<version>${spigot.version}</version>
|
2021-12-07 03:35:30 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>LibsDisguises</groupId>
|
|
|
|
<artifactId>shared</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>specialsource-maven-plugin</artifactId>
|
2022-03-04 18:58:40 +00:00
|
|
|
<version>1.2.4</version>
|
2021-12-07 03:35:30 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-obf</id>
|
|
|
|
<configuration>
|
2022-03-04 18:58:40 +00:00
|
|
|
<srgIn>org.spigotmc:minecraft-server:${spigot.version}:txt:maps-mojang</srgIn>
|
2021-12-07 03:35:30 +00:00
|
|
|
<reverse>true</reverse>
|
2022-03-04 18:58:40 +00:00
|
|
|
<remappedDependencies>org.spigotmc:spigot:${spigot.version}:jar:remapped-mojang</remappedDependencies>
|
|
|
|
<remappedClassifierName>remapped-mojang</remappedClassifierName>
|
2021-12-07 03:35:30 +00:00
|
|
|
<remappedArtifactAttached>true</remappedArtifactAttached>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-spigot</id>
|
|
|
|
<configuration>
|
2022-03-04 18:58:40 +00:00
|
|
|
<inputFile>target/${build.finalName}-remapped-mojang.jar</inputFile>
|
|
|
|
<srgIn>org.spigotmc:minecraft-server:${spigot.version}:csrg:maps-spigot</srgIn>
|
|
|
|
<remappedDependencies>org.spigotmc:spigot:${spigot.version}:jar:remapped-obf</remappedDependencies>
|
2021-12-07 04:25:29 +00:00
|
|
|
<remappedClassifierName>remapped-spigot</remappedClassifierName>
|
2022-03-04 18:58:40 +00:00
|
|
|
<remappedArtifactAttached>true</remappedArtifactAttached>
|
2021-12-07 03:35:30 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|