2019-07-20 06:01:24 +02:00
|
|
|
From 566af2ba410dc0dfd23c752b3f94cc20a39fc736 Mon Sep 17 00:00:00 2001
|
2015-01-29 22:25:50 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Mon, 29 Feb 2016 20:40:33 -0600
|
2015-03-08 02:16:09 +01:00
|
|
|
Subject: [PATCH] POM Changes
|
2014-07-21 22:46:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
2019-07-20 06:01:24 +02:00
|
|
|
index 0f8bccd430..04b0dd9a7f 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/pom.xml
|
|
|
|
+++ b/pom.xml
|
2019-02-07 06:48:17 +01:00
|
|
|
@@ -1,15 +1,14 @@
|
2014-07-21 22:46:54 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-03-20 01:41:36 +01: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>
|
|
|
|
- <groupId>org.spigotmc</groupId>
|
|
|
|
- <artifactId>spigot</artifactId>
|
2016-03-01 00:09:49 +01:00
|
|
|
+ <artifactId>paper</artifactId>
|
2015-03-20 01:41:36 +01:00
|
|
|
<packaging>jar</packaging>
|
2019-07-20 06:01:24 +02:00
|
|
|
<version>1.14.4-R0.1-SNAPSHOT</version>
|
2015-03-20 01:41:36 +01:00
|
|
|
- <name>Spigot</name>
|
2019-04-25 08:53:51 +02:00
|
|
|
- <url>https://www.spigotmc.org/</url>
|
2016-03-01 00:09:49 +01:00
|
|
|
+ <name>Paper</name>
|
2018-10-05 17:52:04 +02:00
|
|
|
+ <url>https://papermc.io</url>
|
2014-07-21 22:46:54 +02:00
|
|
|
|
2015-03-20 01:41:36 +01:00
|
|
|
<properties>
|
2019-02-07 06:48:17 +01:00
|
|
|
- <skipTests>true</skipTests>
|
|
|
|
+ <!-- <skipTests>true</skipTests> Paper - This [was] not going to end well -->
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<api.version>unknown</api.version>
|
2019-07-20 06:01:24 +02:00
|
|
|
<minecraft.version>1.14.4</minecraft.version>
|
2019-01-04 20:19:36 +01:00
|
|
|
@@ -22,16 +21,16 @@
|
2015-03-20 01:41:36 +01:00
|
|
|
</properties>
|
2014-07-21 22:46:54 +02:00
|
|
|
|
2015-03-20 01:41:36 +01:00
|
|
|
<parent>
|
|
|
|
- <groupId>org.spigotmc</groupId>
|
|
|
|
- <artifactId>spigot-parent</artifactId>
|
2016-03-01 00:09:49 +01:00
|
|
|
+ <groupId>com.destroystokyo.paper</groupId>
|
|
|
|
+ <artifactId>paper-parent</artifactId>
|
2015-03-20 01:41:36 +01:00
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
2018-07-15 03:53:17 +02:00
|
|
|
|
|
|
|
<dependencies>
|
2015-03-20 01:41:36 +01:00
|
|
|
<dependency>
|
|
|
|
- <groupId>org.spigotmc</groupId>
|
|
|
|
- <artifactId>spigot-api</artifactId>
|
2016-03-01 00:09:49 +01:00
|
|
|
+ <groupId>com.destroystokyo.paper</groupId>
|
|
|
|
+ <artifactId>paper-api</artifactId>
|
2015-03-20 01:41:36 +01:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
2016-03-01 00:09:49 +01:00
|
|
|
</dependency>
|
2019-04-23 06:47:07 +02:00
|
|
|
@@ -109,34 +108,22 @@
|
2016-03-18 07:13:51 +01:00
|
|
|
|
|
|
|
<!-- This builds a completely 'ready to start' jar with all dependencies inside -->
|
2016-03-01 00:09:49 +01:00
|
|
|
<build>
|
2016-03-31 03:27:13 +02:00
|
|
|
+ <finalName>paper-${minecraft.version}</finalName>
|
2016-03-18 07:13:51 +01:00
|
|
|
+ <defaultGoal>clean install</defaultGoal> <!-- Paper -->
|
2016-02-15 13:02:47 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
- <groupId>net.md-5</groupId>
|
|
|
|
- <artifactId>scriptus</artifactId>
|
|
|
|
- <version>0.2</version>
|
2016-03-01 00:09:49 +01:00
|
|
|
+ <groupId>com.lukegb.mojo</groupId>
|
|
|
|
+ <artifactId>gitdescribe-maven-plugin</artifactId>
|
|
|
|
+ <version>1.3</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <outputPrefix>git-Paper-</outputPrefix>
|
|
|
|
+ <scmDirectory>..</scmDirectory>
|
|
|
|
+ </configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-03-20 01:41:36 +01:00
|
|
|
- <id>ex-spigot</id>
|
2016-02-15 13:02:47 +01:00
|
|
|
- <configuration>
|
2015-03-20 01:41:36 +01:00
|
|
|
- <format>git-Spigot-%s</format>
|
2016-02-15 13:02:47 +01:00
|
|
|
- <scmDirectory>../</scmDirectory>
|
2015-03-20 01:41:36 +01:00
|
|
|
- <descriptionProperty>spigot.desc</descriptionProperty>
|
2016-02-15 13:02:47 +01:00
|
|
|
- </configuration>
|
|
|
|
- <phase>initialize</phase>
|
2016-05-30 01:26:35 +02:00
|
|
|
+ <phase>compile</phase>
|
|
|
|
<goals>
|
2016-02-15 13:02:47 +01:00
|
|
|
- <goal>describe</goal>
|
|
|
|
- </goals>
|
|
|
|
- </execution>
|
|
|
|
- <execution>
|
|
|
|
- <id>ex-craftbukkit</id>
|
|
|
|
- <configuration>
|
|
|
|
- <format>-%s</format>
|
|
|
|
- <scmDirectory>../../CraftBukkit</scmDirectory>
|
|
|
|
- <descriptionProperty>craftbukkit.desc</descriptionProperty>
|
|
|
|
- </configuration>
|
|
|
|
- <phase>initialize</phase>
|
2016-05-30 01:26:35 +02:00
|
|
|
- <goals>
|
2016-02-15 13:02:47 +01:00
|
|
|
- <goal>describe</goal>
|
2016-03-01 00:09:49 +01:00
|
|
|
+ <goal>gitdescribe</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2019-04-23 06:47:07 +02:00
|
|
|
@@ -146,11 +133,13 @@
|
2016-02-15 13:02:47 +01:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2018-07-15 03:53:17 +02:00
|
|
|
<version>2.4</version>
|
2016-03-01 00:09:49 +01:00
|
|
|
<configuration>
|
|
|
|
+ <forceCreation>true</forceCreation> <!-- Required to prevent shading the jar multiple times -->
|
|
|
|
<archive>
|
2015-03-20 01:41:36 +01:00
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>org.bukkit.craftbukkit.Main</Main-Class>
|
|
|
|
<Implementation-Title>CraftBukkit</Implementation-Title>
|
|
|
|
- <Implementation-Version>${spigot.desc}${craftbukkit.desc}</Implementation-Version>
|
2018-08-26 20:11:49 +02:00
|
|
|
+ <!--suppress MavenModelInspection -->
|
2016-02-15 13:02:47 +01:00
|
|
|
+ <Implementation-Version>${describe}</Implementation-Version>
|
2016-11-17 03:23:38 +01:00
|
|
|
<Implementation-Vendor>${maven.build.timestamp}</Implementation-Vendor>
|
2015-03-20 01:41:36 +01:00
|
|
|
<Specification-Title>Bukkit</Specification-Title>
|
|
|
|
<Specification-Version>${api.version}</Specification-Version>
|
2019-04-23 06:47:07 +02:00
|
|
|
@@ -190,6 +179,7 @@
|
2016-03-18 07:13:51 +01:00
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2016-11-19 03:09:03 +01:00
|
|
|
+ <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation> <!-- Paper -->
|
2018-12-08 11:09:55 +01:00
|
|
|
<createSourcesJar>${shadeSourcesJar}</createSourcesJar>
|
2016-03-18 07:13:51 +01:00
|
|
|
<relocations>
|
2019-03-20 02:46:00 +01:00
|
|
|
<!-- Cannot be relocated as it breaks translation property keys -->
|
2019-04-23 06:47:07 +02:00
|
|
|
@@ -203,10 +193,11 @@
|
2016-05-30 01:26:35 +02:00
|
|
|
<pattern>jline</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.jline</shadedPattern>
|
2017-06-08 20:07:00 +02:00
|
|
|
</relocation>
|
|
|
|
- <relocation>
|
|
|
|
- <pattern>it.unimi</pattern>
|
|
|
|
- <shadedPattern>org.bukkit.craftbukkit.libs.it.unimi</shadedPattern>
|
|
|
|
- </relocation>
|
|
|
|
+ <!-- Paper - Don't relocate fastutil in order to prevent api breakage -->
|
|
|
|
+ <!--<relocation>-->
|
|
|
|
+ <!--<pattern>it.unimi</pattern>-->
|
|
|
|
+ <!--<shadedPattern>org.bukkit.craftbukkit.libs.it.unimi</shadedPattern>-->
|
|
|
|
+ <!--</relocation>-->
|
|
|
|
<relocation>
|
2019-04-23 06:47:07 +02:00
|
|
|
<pattern>org.apache.commons.codec</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.libs.org.apache.commons.codec</shadedPattern>
|
|
|
|
@@ -248,10 +239,6 @@
|
2017-07-17 02:36:27 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-03-01 00:09:49 +01:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-01-24 22:36:24 +01:00
|
|
|
<version>3.8.0</version>
|
2016-03-01 00:09:49 +01:00
|
|
|
- <configuration>
|
|
|
|
- <!-- we use the Eclipse compiler as it doesn't need a JDK -->
|
|
|
|
- <compilerId>eclipse</compilerId>
|
|
|
|
- </configuration>
|
2019-01-24 22:36:24 +01:00
|
|
|
<dependencies>
|
|
|
|
<!-- we need our custom version as it fixes some bugs on case sensitive file systems -->
|
|
|
|
<dependency>
|
2014-07-23 03:16:50 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/util/Versioning.java b/src/main/java/org/bukkit/craftbukkit/util/Versioning.java
|
2019-05-28 01:01:45 +02:00
|
|
|
index 93046379d0..674096cab1 100644
|
2014-07-23 03:16:50 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/util/Versioning.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/util/Versioning.java
|
|
|
|
@@ -11,7 +11,7 @@ public final class Versioning {
|
|
|
|
public static String getBukkitVersion() {
|
|
|
|
String result = "Unknown-Version";
|
|
|
|
|
|
|
|
- InputStream stream = Bukkit.class.getClassLoader().getResourceAsStream("META-INF/maven/org.spigotmc/spigot-api/pom.properties");
|
2016-03-01 00:09:49 +01:00
|
|
|
+ InputStream stream = Bukkit.class.getClassLoader().getResourceAsStream("META-INF/maven/com.destroystokyo.paper/paper-api/pom.properties");
|
2014-07-23 03:16:50 +02:00
|
|
|
Properties properties = new Properties();
|
|
|
|
|
|
|
|
if (stream != null) {
|
2014-07-21 22:46:54 +02:00
|
|
|
--
|
2019-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2014-07-21 22:46:54 +02:00
|
|
|
|