2017-09-18 13:04:01 +02:00
|
|
|
From b729acf6c391a7f26a4e093724d238d56e6fa812 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
|
2017-09-18 13:04:01 +02:00
|
|
|
index f31825f52..6a0a02883 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/pom.xml
|
|
|
|
+++ b/pom.xml
|
|
|
|
@@ -1,12 +1,12 @@
|
|
|
|
<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
|
|
|
+ <groupId>com.destroystokyo.paper</groupId>
|
|
|
|
+ <artifactId>paper</artifactId>
|
2015-03-20 01:41:36 +01:00
|
|
|
<packaging>jar</packaging>
|
2017-09-18 13:04:01 +02:00
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
2015-03-20 01:41:36 +01:00
|
|
|
- <name>Spigot</name>
|
|
|
|
- <url>http://www.spigotmc.org</url>
|
2016-03-01 00:09:49 +01:00
|
|
|
+ <name>Paper</name>
|
2016-06-09 05:57:14 +02:00
|
|
|
+ <url>https://github.com/PaperMC/Paper</url>
|
2014-07-21 22:46:54 +02:00
|
|
|
|
2015-03-20 01:41:36 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-07-17 02:36:27 +02:00
|
|
|
@@ -21,8 +21,8 @@
|
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>
|
2017-07-17 02:36:27 +02:00
|
|
|
@@ -36,8 +36,8 @@
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
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>
|
2017-08-03 16:36:06 +02:00
|
|
|
@@ -108,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>
|
2017-08-03 16:36:06 +02:00
|
|
|
@@ -145,11 +133,12 @@
|
2016-02-15 13:02:47 +01:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2016-11-17 03:23:38 +01:00
|
|
|
<version>3.0.2</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>
|
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>
|
2017-08-03 16:36:06 +02:00
|
|
|
@@ -209,19 +198,22 @@
|
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 -->
|
2016-03-18 07:13:51 +01:00
|
|
|
<relocations>
|
2016-05-30 01:26:35 +02:00
|
|
|
- <relocation>
|
|
|
|
- <pattern>joptsimple</pattern>
|
|
|
|
- <shadedPattern>org.bukkit.craftbukkit.libs.joptsimple</shadedPattern>
|
|
|
|
- </relocation>
|
|
|
|
+ <!-- Paper - Workaround for hardcoded path lookup in dependency, easier than forking it - GH-189 -->
|
|
|
|
+ <!--<relocation>-->
|
|
|
|
+ <!--<pattern>joptsimple</pattern>-->
|
|
|
|
+ <!--<shadedPattern>org.bukkit.craftbukkit.libs.joptsimple</shadedPattern>-->
|
|
|
|
+ <!--</relocation>-->
|
2016-03-18 07:13:51 +01:00
|
|
|
<relocation>
|
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>
|
|
|
|
<pattern>org.bukkit.craftbukkit</pattern>
|
|
|
|
<shadedPattern>org.bukkit.craftbukkit.v${minecraft_version}</shadedPattern>
|
2017-08-03 16:36:06 +02:00
|
|
|
@@ -247,18 +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>
|
2017-09-18 13:04:01 +02:00
|
|
|
<version>3.7.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>
|
|
|
|
- <dependencies>
|
|
|
|
- <!-- we need our custom version as it fixes some bugs on case sensitive file systems -->
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.codehaus.plexus</groupId>
|
|
|
|
- <artifactId>plexus-compiler-eclipse</artifactId>
|
2017-07-17 02:36:27 +02:00
|
|
|
- <version>2.8.1-spigotmc</version>
|
2016-03-01 00:09:49 +01:00
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
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
|
2017-07-17 02:36:27 +02:00
|
|
|
index 93046379d..674096cab 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
|
|
|
--
|
2017-09-18 13:04:01 +02:00
|
|
|
2.14.1
|
2014-07-21 22:46:54 +02:00
|
|
|
|