Paper/Spigot-API-Patches/0001-POM-changes.patch

122 lines
4.7 KiB
Diff
Raw Normal View History

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2016-02-29 23:09:49 +00:00
From: Zach Brown <zach.brown@destroystokyo.com>
2017-08-03 14:36:06 +00:00
Date: Tue, 1 Mar 2016 00:16:08 +0100
Subject: [PATCH] POM changes
diff --git a/pom.xml b/pom.xml
index 186405ba1914b2b384896c61770c225b50091401..9975ba9ae19f6217bec206fee247fac1a30d58fc 100644
--- a/pom.xml
+++ b/pom.xml
2019-07-20 04:01:24 +00:00
@@ -2,34 +2,28 @@
2019-05-14 02:20:58 +00:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2017-08-05 22:36:47 +00:00
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>
2017-08-05 22:36:47 +00:00
+ <parent>
2016-02-29 23:09:49 +00:00
+ <groupId>com.destroystokyo.paper</groupId>
+ <artifactId>paper-parent</artifactId>
2016-04-24 02:41:46 +00:00
+ <version>dev-SNAPSHOT</version>
2017-08-05 22:36:47 +00:00
+ </parent>
2019-05-14 02:20:58 +00:00
- <groupId>org.spigotmc</groupId>
- <artifactId>spigot-api</artifactId>
2019-04-23 04:47:07 +00:00
+ <groupId>com.destroystokyo.paper</groupId>
2016-02-29 23:09:49 +00:00
+ <artifactId>paper-api</artifactId>
<version>1.15.2-R0.1-SNAPSHOT</version>
2015-01-07 04:13:40 +00:00
<packaging>jar</packaging>
- <name>Spigot-API</name>
2017-08-05 22:36:47 +00:00
- <url>https://www.spigotmc.org/</url>
2016-02-29 23:09:49 +00:00
+ <name>Paper-API</name>
2016-09-04 06:26:05 +00:00
+ <url>https://github.com/PaperMC/Paper</url>
2015-01-07 04:13:40 +00:00
<description>An enhanced plugin API for Minecraft servers.</description>
<properties>
- <skipTests>true</skipTests>
+ <!-- <skipTests>true</skipTests> Paper - This [was] not going to end well -->
2019-05-06 02:58:04 +00:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2018-09-22 16:58:09 +00:00
- <distributionManagement>
- <repository>
2016-02-21 10:12:03 +00:00
- <id>spigotmc-releases</id>
- <url>https://hub.spigotmc.org/nexus/content/repositories/releases/</url>
2018-09-22 16:58:09 +00:00
- </repository>
- <snapshotRepository>
2016-02-21 10:12:03 +00:00
- <id>spigotmc-snapshots</id>
- <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2018-09-22 16:58:09 +00:00
- </snapshotRepository>
- </distributionManagement>
-
<repositories>
<!--
If you are a plugin developer, please use https://hub.spigotmc.org/nexus/content/repositories/snapshots/
2019-07-20 04:01:24 +00:00
@@ -41,6 +35,10 @@
2017-08-03 14:36:06 +00:00
<id>spigotmc-public</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
2017-08-03 14:36:06 +00:00
+ <repository>
+ <id>sonatype</id>
+ <url>https://oss.sonatype.org/content/groups/public/</url>
+ </repository>
</repositories>
<pluginRepositories>
2019-07-20 04:01:24 +00:00
@@ -57,6 +55,20 @@
2019-04-23 04:47:07 +00:00
<version>2.6</version>
<scope>compile</scope>
</dependency>
2016-11-03 19:28:58 +00:00
+ <!-- bundled with Minecraft, shouldn't ever change -->
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
2016-11-03 19:51:00 +00:00
+ <version>1.3.9</version>
+ <scope>compile</scope>
2019-04-23 04:47:07 +00:00
+ </dependency>
+ <!-- used in previous versions of the API -->
+ <dependency>
+ <groupId>com.googlecode.json-simple</groupId>
+ <artifactId>json-simple</artifactId>
+ <version>1.1.1</version>
+ <scope>compile</scope>
+ </dependency>
<!-- bundled with Minecraft, should be kept in sync -->
<dependency>
<groupId>com.google.guava</groupId>
2020-04-30 21:00:55 +00:00
@@ -107,12 +119,13 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
- <version>7.3.1</version>
+ <version>8.0.1</version> <!-- Paper -->
<scope>test</scope>
</dependency>
</dependencies>
<build>
+ <defaultGoal>clean install</defaultGoal>
<plugins>
<plugin>
<groupId>net.md-5</groupId>
@@ -131,10 +144,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2019-12-10 23:56:33 +00:00
<version>3.8.1</version>
- <configuration>
- <!-- we use the Eclipse compiler as it doesn't need a JDK -->
- <compilerId>eclipse</compilerId>
- </configuration>
<dependencies>
<!-- we need our custom version as it fixes some bugs on case sensitive file systems -->
<dependency>
@@ -180,6 +189,7 @@
</excludes>
</filter>
</filters>
+ <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<!-- when downloading via Maven we can pull depends individually -->
<shadedArtifactAttached>true</shadedArtifactAttached>
</configuration>