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

144 lines
5.3 KiB
Diff
Raw Normal View History

From 3a25a0e5c49a62778583bf33ec87e41053a1989f Mon Sep 17 00:00:00 2001
2016-03-01 00:09:49 +01:00
From: Zach Brown <zach.brown@destroystokyo.com>
2017-08-03 16:36:06 +02:00
Date: Tue, 1 Mar 2016 00:16:08 +0100
Subject: [PATCH] POM changes
diff --git a/pom.xml b/pom.xml
index 117a7f8cf..03894ccf3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,29 +3,35 @@
2017-08-06 00:36:47 +02: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-06 00:36:47 +02:00
- <groupId>org.spigotmc</groupId>
- <artifactId>spigot-api</artifactId>
+ <parent>
2016-03-01 00:09:49 +01:00
+ <groupId>com.destroystokyo.paper</groupId>
+ <artifactId>paper-parent</artifactId>
2016-04-24 04:41:46 +02:00
+ <version>dev-SNAPSHOT</version>
2017-08-06 00:36:47 +02:00
+ </parent>
+
2016-03-01 00:09:49 +01:00
+ <artifactId>paper-api</artifactId>
<version>1.13.1-R0.1-SNAPSHOT</version>
2015-01-07 05:13:40 +01:00
<packaging>jar</packaging>
- <name>Spigot-API</name>
2017-08-06 00:36:47 +02:00
- <url>https://www.spigotmc.org/</url>
2016-03-01 00:09:49 +01:00
+ <name>Paper-API</name>
2016-09-04 08:26:05 +02:00
+ <url>https://github.com/PaperMC/Paper</url>
2015-01-07 05:13:40 +01:00
<description>An enhanced plugin API for Minecraft servers.</description>
<properties>
- <maven.compiler.source>1.7</maven.compiler.source>
- <maven.compiler.target>1.7</maven.compiler.target>
+ <!-- Paper - #Logic -->
+ <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>
2016-02-21 11:12:03 +01:00
<distributionManagement>
<repository>
- <id>spigotmc-releases</id>
- <url>https://hub.spigotmc.org/nexus/content/repositories/releases/</url>
+ <id>destroystokyo-releases</id>
+ <url>https://destroystokyo.com/repo/repository/maven-releases/</url>
2016-02-21 11:12:03 +01:00
</repository>
<snapshotRepository>
- <id>spigotmc-snapshots</id>
- <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
+ <id>destroystokyo-snapshots</id>
+ <url>https://destroystokyo.com/repo/repository/maven-snapshots/</url>
2016-02-21 11:12:03 +01:00
</snapshotRepository>
</distributionManagement>
@@ -34,6 +40,10 @@
2017-08-03 16:36:06 +02:00
<id>spigotmc-public</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
2017-08-03 16:36:06 +02:00
+ <repository>
+ <id>sonatype</id>
+ <url>https://oss.sonatype.org/content/groups/public/</url>
+ </repository>
</repositories>
<pluginRepositories>
@@ -56,6 +66,13 @@
2017-08-08 05:05:16 +02:00
<version>1.1.1</version>
<scope>compile</scope>
</dependency>
2016-11-03 20:28:58 +01:00
+ <!-- bundled with Minecraft, shouldn't ever change -->
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
2016-11-03 20:51:00 +01:00
+ <version>1.3.9</version>
+ <scope>compile</scope>
+ </dependency>
<!-- bundled with Minecraft, should be kept in sync -->
<dependency>
<groupId>com.google.guava</groupId>
@@ -100,15 +117,12 @@
</dependencies>
<build>
+ <defaultGoal>clean install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</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>
@@ -143,40 +157,11 @@
</execution>
</executions>
<configuration>
+ <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<!-- when downloading via Maven we can pull depends individually -->
<shadedArtifactAttached>true</shadedArtifactAttached>
</configuration>
</plugin>
2017-11-17 10:40:49 +01:00
</plugins>
</build>
-
2017-11-17 10:40:49 +01:00
- <profiles>
- <profile>
- <id>development</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>animal-sniffer-maven-plugin</artifactId>
- <version>1.17</version>
2017-11-17 10:40:49 +01:00
- <executions>
- <execution>
- <phase>process-classes</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <signature>
- <groupId>org.codehaus.mojo.signature</groupId>
- <artifactId>java17</artifactId>
2018-07-13 09:39:44 +02:00
- <version>1.0</version>
2017-11-17 10:40:49 +01:00
- </signature>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
</project>
--
2018-07-13 09:39:44 +02:00
2.18.0