2021-12-07 04:35:30 +01: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>
|
2022-03-10 15:29:28 +01:00
|
|
|
<artifactId>nms</artifactId>
|
2021-12-07 04:35:30 +01:00
|
|
|
<groupId>LibsDisguises</groupId>
|
2022-03-22 07:34:46 +01:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2022-03-04 19:58:40 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2021-12-07 04:35:30 +01:00
|
|
|
</parent>
|
|
|
|
|
2021-12-11 07:25:17 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-12-07 04:35:30 +01:00
|
|
|
<artifactId>v1_18_R1</artifactId>
|
2022-03-22 07:34:46 +01:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2021-12-07 04:35:30 +01:00
|
|
|
|
2021-12-25 02:30:18 +01: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 19:58:40 +01:00
|
|
|
|
2022-03-21 11:44:10 +01:00
|
|
|
<spigot.version>1.18.1-R0.1-SNAPSHOT</spigot.version>
|
2021-12-25 02:30:18 +01:00
|
|
|
</properties>
|
|
|
|
|
2021-12-07 04:35:30 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2022-03-04 19:58:40 +01:00
|
|
|
<version>${spigot.version}</version>
|
2021-12-07 04:35:30 +01:00
|
|
|
<classifier>remapped-mojang</classifier>
|
2022-03-05 02:36:17 +01:00
|
|
|
<scope>provided</scope>
|
2021-12-07 04:35:30 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2022-03-04 19:58:40 +01:00
|
|
|
<version>${spigot.version}</version>
|
2022-03-05 02:36:17 +01:00
|
|
|
<scope>provided</scope>
|
2021-12-07 04:35:30 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>LibsDisguises</groupId>
|
|
|
|
<artifactId>shared</artifactId>
|
2022-03-22 07:34:46 +01:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2021-12-07 04:35:30 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
</dependency>
|
2022-06-03 17:59:11 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>authlib</artifactId>
|
2022-06-03 18:09:06 +02:00
|
|
|
<version>3.2.37</version>
|
2022-06-03 17:59:11 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2021-12-07 04:35:30 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>specialsource-maven-plugin</artifactId>
|
2022-03-04 19:58:40 +01:00
|
|
|
<version>1.2.4</version>
|
2021-12-07 04:35:30 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-obf</id>
|
|
|
|
<configuration>
|
2022-03-04 19:58:40 +01:00
|
|
|
<srgIn>org.spigotmc:minecraft-server:${spigot.version}:txt:maps-mojang</srgIn>
|
2021-12-07 04:35:30 +01:00
|
|
|
<reverse>true</reverse>
|
2022-03-04 19:58:40 +01:00
|
|
|
<remappedDependencies>org.spigotmc:spigot:${spigot.version}:jar:remapped-mojang</remappedDependencies>
|
|
|
|
<remappedClassifierName>remapped-mojang</remappedClassifierName>
|
2021-12-07 04:35:30 +01:00
|
|
|
<remappedArtifactAttached>true</remappedArtifactAttached>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>remap</goal>
|
|
|
|
</goals>
|
|
|
|
<id>remap-spigot</id>
|
|
|
|
<configuration>
|
2022-03-05 02:22:55 +01:00
|
|
|
<inputFile>target/${project.build.finalName}-remapped-mojang.jar</inputFile>
|
2022-03-04 19:58:40 +01:00
|
|
|
<srgIn>org.spigotmc:minecraft-server:${spigot.version}:csrg:maps-spigot</srgIn>
|
|
|
|
<remappedDependencies>org.spigotmc:spigot:${spigot.version}:jar:remapped-obf</remappedDependencies>
|
2021-12-07 05:25:29 +01:00
|
|
|
<remappedClassifierName>remapped-spigot</remappedClassifierName>
|
2022-03-04 19:58:40 +01:00
|
|
|
<remappedArtifactAttached>true</remappedArtifactAttached>
|
2021-12-07 04:35:30 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|