Avoid NMS module compiling

This commit is contained in:
Flowsqy 2022-07-26 17:53:18 +02:00
parent 040a53e257
commit 07951a5781
17 changed files with 346 additions and 134 deletions

20
nms/all/nms-assembly.xml Normal file
View File

@ -0,0 +1,20 @@
<assembly xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/ASSEMBLY/2.1.1"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.1 http://maven.apache.org/xsd/assembly-2.1.1.xsd">
<id>nms-assembly</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<moduleSets>
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<includes>
<include>de.epiceric:shopchest-nms-*</include>
</includes>
<binaries>
<unpack>true</unpack>
</binaries>
</moduleSet>
</moduleSets>
</assembly>

115
nms/all/pom.xml Normal file
View File

@ -0,0 +1,115 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>shopchest-nms</artifactId>
<groupId>de.epiceric</groupId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>shopchest-nms-all</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<properties>
<builtFilePath>target/${project.build.finalName}.jar</builtFilePath>
</properties>
<!-- Ensure build order for assembly -->
<dependencies>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-interface</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-reflection</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_17_R1</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_17_R2</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_18_R1</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_18_R2</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_19_R1</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>nms-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>nms-assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>install-file</goal>
</goals>
<phase>install</phase>
<configuration>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<file>${builtFilePath}</file>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>deploy-file</goal>
</goals>
<phase>deploy</phase>
<configuration>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<file>${builtFilePath}</file>
<repositoryId>${project.distributionManagement.repository.id}</repositoryId>
<url>${project.distributionManagement.repository.url}</url>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-nms</artifactId>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version> <version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

126
nms/pom.xml Normal file
View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>shopchest-parent</artifactId>
<groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>shopchest-nms</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>interface</module>
<module>reflection</module>
<module>v1_17_R1</module>
<module>v1_17_R2</module>
<module>v1_18_R1</module>
<module>v1_18_R2</module>
<module>v1_19_R1</module>
<module>all</module>
</modules>
<properties>
<!-- Default Spigot version for nms implementation. Must be overridden -->
<spigot.version>defaultVersion</spigot.version>
<!-- Disable install for all modules. Only all assembly will be installed -->
<maven.install.skip>true</maven.install.skip>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-interface</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-reflection</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_17_R1</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_17_R2</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_18_R1</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_18_R2</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_19_R1</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>net.md-5</groupId>
<artifactId>specialsource-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>remap</goal>
</goals>
<id>remap-obf</id>
<configuration>
<srgIn>org.spigotmc:minecraft-server:${spigot.version}:txt:maps-mojang</srgIn>
<reverse>true</reverse>
<remappedDependencies>org.spigotmc:spigot:${spigot.version}:jar:remapped-mojang
</remappedDependencies>
<remappedArtifactAttached>true</remappedArtifactAttached>
<remappedClassifierName>remapped-obf</remappedClassifierName>
</configuration>
</execution>
<execution>
<phase>package</phase>
<goals>
<goal>remap</goal>
</goals>
<id>remap-spigot</id>
<configuration>
<inputFile>
${project.build.directory}/${project.artifactId}-${project.version}-remapped-obf.jar
</inputFile>
<srgIn>org.spigotmc:minecraft-server:${spigot.version}:csrg:maps-spigot</srgIn>
<remappedDependencies>org.spigotmc:spigot:${spigot.version}:jar:remapped-obf
</remappedDependencies>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

View File

@ -3,10 +3,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-nms</artifactId>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version> <version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@ -3,10 +3,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-nms</artifactId>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version> <version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@ -3,14 +3,13 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-nms</artifactId>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version> <version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>shopchest-nms-v1_17_1_R1</artifactId> <artifactId>shopchest-nms-v1_17_R2</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<properties> <properties>

View File

@ -1,4 +1,4 @@
package de.epiceric.shopchest.nms.v1_17_1_R1; package de.epiceric.shopchest.nms.v1_17_R2;
import de.epiceric.shopchest.nms.FakeArmorStand; import de.epiceric.shopchest.nms.FakeArmorStand;
import io.netty.buffer.Unpooled; import io.netty.buffer.Unpooled;

View File

@ -1,4 +1,4 @@
package de.epiceric.shopchest.nms.v1_17_1_R1; package de.epiceric.shopchest.nms.v1_17_R2;
import de.epiceric.shopchest.nms.FakeEntity; import de.epiceric.shopchest.nms.FakeEntity;
import net.minecraft.network.protocol.Packet; import net.minecraft.network.protocol.Packet;

View File

@ -1,4 +1,4 @@
package de.epiceric.shopchest.nms.v1_17_1_R1; package de.epiceric.shopchest.nms.v1_17_R2;
import de.epiceric.shopchest.nms.FakeItem; import de.epiceric.shopchest.nms.FakeItem;
import net.minecraft.network.protocol.game.ClientboundSetEntityMotionPacket; import net.minecraft.network.protocol.game.ClientboundSetEntityMotionPacket;

View File

@ -1,4 +1,4 @@
package de.epiceric.shopchest.nms.v1_17_1_R1; package de.epiceric.shopchest.nms.v1_17_R2;
import de.epiceric.shopchest.nms.FakeArmorStand; import de.epiceric.shopchest.nms.FakeArmorStand;
import de.epiceric.shopchest.nms.FakeItem; import de.epiceric.shopchest.nms.FakeItem;

View File

@ -1,4 +1,4 @@
package de.epiceric.shopchest.nms.v1_17_1_R1; package de.epiceric.shopchest.nms.v1_17_R2;
import de.epiceric.shopchest.nms.TextComponentHelper; import de.epiceric.shopchest.nms.TextComponentHelper;
import net.minecraft.nbt.CompoundTag; import net.minecraft.nbt.CompoundTag;

View File

@ -3,17 +3,15 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-nms</artifactId>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version> <version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>shopchest-nms-v1_18_R1</artifactId> <artifactId>shopchest-nms-v1_18_R1</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<properties> <properties>
<spigot.version>1.18-R0.1-SNAPSHOT</spigot.version> <spigot.version>1.18-R0.1-SNAPSHOT</spigot.version>
</properties> </properties>

View File

@ -3,17 +3,15 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-nms</artifactId>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version> <version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>shopchest-nms-v1_18_R2</artifactId> <artifactId>shopchest-nms-v1_18_R2</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<properties> <properties>
<spigot.version>1.18.2-R0.1-SNAPSHOT</spigot.version> <spigot.version>1.18.2-R0.1-SNAPSHOT</spigot.version>
</properties> </properties>

View File

@ -3,17 +3,15 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-nms</artifactId>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version> <version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>shopchest-nms-v1_19_R1</artifactId> <artifactId>shopchest-nms-v1_19_R1</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<properties> <properties>
<spigot.version>1.19-R0.1-SNAPSHOT</spigot.version> <spigot.version>1.19-R0.1-SNAPSHOT</spigot.version>
</properties> </properties>

View File

@ -3,13 +3,13 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-parent</artifactId>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<version>1.14.0-SNAPSHOT</version> <version>1.14.0-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>ShopChest</artifactId> <artifactId>shopchest-plugin</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
@ -86,31 +86,7 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-interface</artifactId> <artifactId>shopchest-nms-all</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-reflection</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_17_R1</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_17_1_R1</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_18_R1</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_18_R2</artifactId>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_19_R1</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>

135
pom.xml
View File

@ -5,21 +5,43 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<artifactId>ShopChest-parent</artifactId> <artifactId>shopchest-parent</artifactId>
<version>1.14.0-SNAPSHOT</version> <version>1.14.0-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<modules> <modules>
<module>plugin</module> <module>plugin</module>
<module>nms/interface</module>
<module>nms/reflection</module>
<module>nms/v1_17_R1</module>
<module>nms/v1_17_1_R1</module>
<module>nms/v1_18_R1</module>
<module>nms/v1_18_R2</module>
<module>nms/v1_19_R1</module>
</modules> </modules>
<profiles>
<profile>
<id>build-nms</id>
<activation>
<property>
<name>buildNMS</name>
</property>
</activation>
<modules>
<module>nms</module>
</modules>
</profile>
<profile>
<id>import-nms</id>
<activation>
<property>
<name>!buildNMS</name>
</property>
</activation>
<repositories>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/Flowsqy/ShopChest</url>
</repository>
</repositories>
</profile>
</profiles>
<name>ShopChest</name> <name>ShopChest</name>
<url>https://www.spigotmc.org/resources/shopchest.11431/</url> <url>https://www.spigotmc.org/resources/shopchest.11431/</url>
<description>A Bukkit plugin letting players create custom chest shops.</description> <description>A Bukkit plugin letting players create custom chest shops.</description>
@ -43,13 +65,10 @@
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>codemc-releases</id> <id>github</id>
<url>https://repo.codemc.io/repository/maven-releases/</url> <name>GitHub Packages</name>
<url>https://maven.pkg.github.com/Flowsqy/ShopChest</url>
</repository> </repository>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement> </distributionManagement>
<properties> <properties>
@ -61,8 +80,11 @@
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<!-- Default Spigot version for nms implementation. Must be overridden --> <!-- Avoid the deployment of all artifact -->
<spigot.version>defaultVersion</spigot.version> <maven.deploy.skip>true</maven.deploy.skip>
<!-- Name of the plugin for the final jar -->
<buildName>ShopChest</buildName>
</properties> </properties>
<repositories> <repositories>
@ -294,40 +316,16 @@
</dependency> </dependency>
<!-- Internal nms shaded dependencies --> <!-- Internal nms shaded dependencies -->
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-all</artifactId>
<version>1.0.0</version>
</dependency>
<dependency> <dependency>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-interface</artifactId> <artifactId>shopchest-nms-interface</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
</dependency> <scope>provided</scope>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-reflection</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_17_R1</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_17_1_R1</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_18_R1</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_18_R2</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>de.epiceric</groupId>
<artifactId>shopchest-nms-v1_19_R1</artifactId>
<version>1.0.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
@ -348,6 +346,7 @@
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<finalName>${buildName}-${project.version}</finalName>
<createDependencyReducedPom>false</createDependencyReducedPom> <createDependencyReducedPom>false</createDependencyReducedPom>
<relocations> <relocations>
<relocation> <relocation>
@ -373,7 +372,7 @@
</relocations> </relocations>
<filters> <filters>
<filter> <filter>
<artifact>de.epiceric:ShopChest</artifact> <artifact>de.epiceric:shopchest-plugin</artifact>
<excludeDefaults>false</excludeDefaults> <excludeDefaults>false</excludeDefaults>
<includes> <includes>
<include>META-INF/**</include> <include>META-INF/**</include>
@ -431,34 +430,20 @@
<groupId>net.md-5</groupId> <groupId>net.md-5</groupId>
<artifactId>specialsource-maven-plugin</artifactId> <artifactId>specialsource-maven-plugin</artifactId>
<version>1.2.4</version> <version>1.2.4</version>
<executions> </plugin>
<execution> <plugin>
<phase>package</phase> <artifactId>maven-assembly-plugin</artifactId>
<goals> <version>3.3.0</version>
<goal>remap</goal> </plugin>
</goals> <plugin>
<id>remap-obf</id> <groupId>org.apache.maven.plugins</groupId>
<configuration> <artifactId>maven-install-plugin</artifactId>
<srgIn>org.spigotmc:minecraft-server:${spigot.version}:txt:maps-mojang</srgIn> <version>3.0.1</version>
<reverse>true</reverse> </plugin>
<remappedDependencies>org.spigotmc:spigot:${spigot.version}:jar:remapped-mojang</remappedDependencies> <plugin>
<remappedArtifactAttached>true</remappedArtifactAttached> <groupId>org.apache.maven.plugins</groupId>
<remappedClassifierName>remapped-obf</remappedClassifierName> <artifactId>maven-deploy-plugin</artifactId>
</configuration> <version>3.0.0</version>
</execution>
<execution>
<phase>package</phase>
<goals>
<goal>remap</goal>
</goals>
<id>remap-spigot</id>
<configuration>
<inputFile>${project.build.directory}/${project.artifactId}-${project.version}-remapped-obf.jar</inputFile>
<srgIn>org.spigotmc:minecraft-server:${spigot.version}:csrg:maps-spigot</srgIn>
<remappedDependencies>org.spigotmc:spigot:${spigot.version}:jar:remapped-obf</remappedDependencies>
</configuration>
</execution>
</executions>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>