2021-06-26 19:08:15 -07: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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-07-01 01:12:18 -05:00
|
|
|
<groupId>net.nuggetmc</groupId>
|
2021-07-21 13:52:21 -05:00
|
|
|
<artifactId>TerminatorPlus</artifactId>
|
2021-08-25 15:15:41 -04:00
|
|
|
<version>3.1-BETA</version>
|
2021-07-21 13:52:21 -05:00
|
|
|
<name>TerminatorPlus</name>
|
2021-06-26 19:08:15 -07:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2022-02-20 12:17:26 +01:00
|
|
|
<version>3.8.1</version>
|
2021-06-26 19:08:15 -07:00
|
|
|
<configuration>
|
|
|
|
|
<source>8</source>
|
|
|
|
|
<target>8</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2021-08-31 02:10:23 +01:00
|
|
|
<version>3.2.4</version>
|
2021-06-26 19:08:15 -07:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
|
<shadedClassifierName>shaded</shadedClassifierName>
|
2021-08-25 15:52:22 -04:00
|
|
|
<!--
|
2021-06-26 19:08:15 -07:00
|
|
|
<transformers>
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
|
|
|
|
|
</transformers>
|
2021-08-25 15:52:22 -04:00
|
|
|
-->
|
2021-06-26 19:08:15 -07:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2021-08-21 13:36:10 -05:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>2.3.1</version>
|
|
|
|
|
</plugin>
|
2022-02-20 12:17:26 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
|
<artifactId>specialsource-maven-plugin</artifactId>
|
|
|
|
|
<version>1.2.2</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>remap</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<id>remap-obf</id>
|
|
|
|
|
<configuration>
|
|
|
|
|
<srgIn>org.spigotmc:minecraft-server:1.18.1-R0.1-SNAPSHOT:txt:maps-mojang</srgIn>
|
|
|
|
|
<reverse>true</reverse>
|
|
|
|
|
<remappedDependencies>org.spigotmc:spigot:1.18.1-R0.1-SNAPSHOT: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:1.18.1-R0.1-SNAPSHOT:csrg:maps-spigot</srgIn>
|
|
|
|
|
<remappedDependencies>org.spigotmc:spigot:1.18.1-R0.1-SNAPSHOT:jar:remapped-obf</remappedDependencies>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2021-06-26 19:08:15 -07:00
|
|
|
</plugins>
|
2021-08-25 15:52:22 -04:00
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
2021-06-26 19:08:15 -07:00
|
|
|
</build>
|
|
|
|
|
|
2021-08-31 00:39:35 +01:00
|
|
|
<repositories>
|
2021-08-31 02:10:23 +01:00
|
|
|
<!-- Spigot Repo -->
|
2021-08-31 00:39:35 +01:00
|
|
|
<repository>
|
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
|
</repository>
|
2021-08-31 02:10:23 +01:00
|
|
|
<!-- Advanced Spigot Repo -->
|
2021-08-31 01:46:23 +01:00
|
|
|
<repository>
|
|
|
|
|
<id>dre-repo</id>
|
2021-08-31 01:48:57 +01:00
|
|
|
<url>https://erethon.de/repo/</url>
|
2021-08-31 01:46:23 +01:00
|
|
|
</repository>
|
2021-08-31 00:39:35 +01:00
|
|
|
</repositories>
|
|
|
|
|
|
2021-06-26 19:08:15 -07:00
|
|
|
<dependencies>
|
2021-08-31 02:10:23 +01:00
|
|
|
<!--Spigot + Bukkit -->
|
2021-06-26 19:08:15 -07:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.spigotmc</groupId>
|
2021-08-31 01:46:23 +01:00
|
|
|
<artifactId>spigot</artifactId>
|
2022-02-20 12:17:26 +01:00
|
|
|
<version>1.18.1-R0.1-SNAPSHOT</version>
|
|
|
|
|
<classifier>remapped-mojang</classifier>
|
2021-08-31 00:39:35 +01:00
|
|
|
<scope>provided</scope>
|
2021-06-26 19:08:15 -07:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2021-08-31 00:39:35 +01:00
|
|
|
</project>
|