2020-01-16 04:27:46 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>net.seanomik</groupId>
|
2020-01-24 16:21:13 +00:00
|
|
|
<artifactId>tamablefoxes</artifactId>
|
2020-09-03 17:39:08 +00:00
|
|
|
<version>1.7.3-SNAPSHOT</version>
|
2020-01-16 04:27:46 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-01-24 16:21:13 +00:00
|
|
|
<name>Tamablefoxes</name>
|
2020-01-16 04:27:46 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
<configuration>
|
2020-01-24 16:21:13 +00:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2020-01-16 04:27:46 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-08-27 19:03:25 +00:00
|
|
|
<!--<outputFile>D:\Code\java\spigotPlugins\_TEST_SERVER_1.14.4_\plugins\TamableFoxes_v${project.version}.jar</outputFile>-->
|
2020-08-27 20:09:31 +00:00
|
|
|
<!--<outputFile>D:\Code\java\spigotPlugins\_TEST_SERVER_1.15.2_\plugins\TamableFoxes_v${project.version}.jar</outputFile>-->
|
2020-09-03 17:39:08 +00:00
|
|
|
<outputFile>D:\Code\java\spigotPlugins\_TEST_SERVER_PAPER_1.16.1_\plugins\TamableFoxes_v${project.version}.jar</outputFile>
|
2020-08-27 19:03:25 +00:00
|
|
|
<!--<outputFile>D:\Code\java\spigotPlugins\_TEST_SERVER_1.16.1_\plugins\TamableFoxes_v${project.version}.jar</outputFile>-->
|
2020-09-03 17:39:08 +00:00
|
|
|
<!--<outputFile>D:\Code\java\spigotPlugins\_TEST_SERVER_1.16.2_\plugins\TamableFoxes_v${project.version}.jar</outputFile>-->
|
2020-01-16 04:27:46 +00:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2020-01-18 19:22:36 +00:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2020-01-16 04:27:46 +00:00
|
|
|
<repository>
|
|
|
|
<id>sonatype</id>
|
|
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
2020-01-18 19:22:36 +00:00
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
2020-01-16 04:27:46 +00:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-03-30 19:18:21 +00:00
|
|
|
<dependency>
|
2020-07-14 17:51:21 +00:00
|
|
|
<groupId>local.spigot.nms</groupId>
|
|
|
|
<artifactId>AllSpigotNMS</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
<scope>system</scope>
|
2020-08-27 19:03:25 +00:00
|
|
|
<systemPath>${project.basedir}/spigot-14-15-16_R1-16_R2.jar</systemPath>
|
2020-07-14 17:51:21 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency> <!-- We need to do this so we get the spigot api without nms. -->
|
2020-01-16 04:27:46 +00:00
|
|
|
<groupId>org.spigotmc</groupId>
|
2020-07-14 17:51:21 +00:00
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.14.4-R0.1-SNAPSHOT</version>
|
2020-01-20 19:24:52 +00:00
|
|
|
<scope>provided</scope>
|
2020-03-30 19:18:21 +00:00
|
|
|
</dependency>
|
2020-03-30 19:57:56 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.WesJD.AnvilGUI</groupId>
|
|
|
|
<artifactId>anvilgui</artifactId>
|
2020-08-27 20:09:31 +00:00
|
|
|
<version>master-cee0befbaf-1</version>
|
2020-03-30 19:57:56 +00:00
|
|
|
</dependency>
|
2020-01-16 04:27:46 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|