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>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>8</source>
|
|
|
|
|
<target>8</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>3.2.1</version>
|
|
|
|
|
<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>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>D:\Minecraft Server\plugins</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</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>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
|
</repository>
|
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>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.spigotmc</groupId>
|
2021-08-31 01:46:23 +01:00
|
|
|
<artifactId>spigot</artifactId>
|
2021-08-31 00:45:07 +01:00
|
|
|
<version>1.16.5-R0.1-SNAPSHOT</version>
|
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>
|