2014-09-01 22:17:42 +02:00
|
|
|
From 782c21dd59776700f5dec8b4c5f268171b33c757 Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: Zach Brown <Zbob750@live.com>
|
|
|
|
Date: Mon, 21 Jul 2014 15:36:01 -0500
|
|
|
|
Subject: [PATCH] POM changes
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
2014-09-01 22:17:42 +02:00
|
|
|
index 0d00e79..58a7b1b 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"
|
|
|
|
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>
|
|
|
|
+ <groupId>org.github.paperspigot</groupId>
|
|
|
|
+ <artifactId>paperspigot</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.7.10-R0.1-SNAPSHOT</version>
|
|
|
|
- <name>Spigot</name>
|
|
|
|
- <url>http://www.spigotmc.org</url>
|
|
|
|
+ <name>PaperSpigot</name>
|
|
|
|
+ <url>https://github.com/PaperSpigot/Spigot</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
@@ -19,8 +19,8 @@
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
- <groupId>org.spigotmc</groupId>
|
|
|
|
- <artifactId>spigot-parent</artifactId>
|
|
|
|
+ <groupId>org.github.paperspigot</groupId>
|
|
|
|
+ <artifactId>paperspigot-parent</artifactId>
|
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
2014-07-22 21:50:06 +02:00
|
|
|
@@ -41,14 +41,14 @@
|
2014-07-21 22:46:54 +02:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
- <groupId>org.spigotmc</groupId>
|
|
|
|
- <artifactId>spigot-api</artifactId>
|
|
|
|
+ <groupId>org.github.paperspigot</groupId>
|
|
|
|
+ <artifactId>paperspigot-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
2014-07-22 21:50:06 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
- <groupId>org.spigotmc</groupId>
|
|
|
|
+ <groupId>org.github.paperspigot</groupId>
|
|
|
|
<artifactId>minecraft-server</artifactId>
|
|
|
|
<version>${minecraft.version}-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
2014-09-01 22:17:42 +02:00
|
|
|
@@ -119,7 +119,7 @@
|
2014-07-21 22:46:54 +02:00
|
|
|
<artifactId>gitdescribe-maven-plugin</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<configuration>
|
|
|
|
- <outputPrefix>git-Spigot-</outputPrefix>
|
|
|
|
+ <outputPrefix>git-PaperSpigot-</outputPrefix>
|
|
|
|
<outputPostfix></outputPostfix>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
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
|
|
|
|
index 9304637..3a4b142 100644
|
|
|
|
--- 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");
|
|
|
|
+ InputStream stream = Bukkit.class.getClassLoader().getResourceAsStream("META-INF/maven/org.github.paperspigot/paperspigot-api/pom.properties");
|
|
|
|
Properties properties = new Properties();
|
|
|
|
|
|
|
|
if (stream != null) {
|
2014-07-21 22:46:54 +02:00
|
|
|
--
|
|
|
|
1.9.1
|
|
|
|
|