143 lines
		
	
	
		
			No EOL
		
	
	
		
			5.1 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			143 lines
		
	
	
		
			No EOL
		
	
	
		
			5.1 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 | 
						|
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
 | 
						|
Date: Tue, 1 Mar 2016 00:16:08 +0100
 | 
						|
Subject: [PATCH] POM changes
 | 
						|
 | 
						|
 | 
						|
diff --git a/pom.xml b/pom.xml
 | 
						|
index 31b8f93e..360d2f08 100644
 | 
						|
--- a/pom.xml
 | 
						|
+++ b/pom.xml
 | 
						|
@@ -0,0 +0,0 @@
 | 
						|
          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-api</artifactId>
 | 
						|
+    <parent>
 | 
						|
+        <groupId>com.destroystokyo.paper</groupId>
 | 
						|
+        <artifactId>paper-parent</artifactId>
 | 
						|
+        <version>dev-SNAPSHOT</version>
 | 
						|
+    </parent>
 | 
						|
+
 | 
						|
+    <groupId>com.destroystokyo.paper</groupId>
 | 
						|
+    <artifactId>paper-api</artifactId>
 | 
						|
     <version>1.12.1-R0.1-SNAPSHOT</version>
 | 
						|
     <packaging>jar</packaging>
 | 
						|
 
 | 
						|
-    <name>Spigot-API</name>
 | 
						|
-    <url>https://www.spigotmc.org/</url>
 | 
						|
+    <name>Paper-API</name>
 | 
						|
+    <url>https://github.com/PaperMC/Paper</url>
 | 
						|
     <description>An enhanced plugin API for Minecraft servers.</description>
 | 
						|
 
 | 
						|
     <properties>
 | 
						|
-        <maven.compiler.source>1.6</maven.compiler.source>
 | 
						|
-        <maven.compiler.target>1.6</maven.compiler.target>
 | 
						|
+        <!-- Paper - Bump to 1.8 - Because Duh... -->
 | 
						|
+        <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>
 | 
						|
 
 | 
						|
     <distributionManagement>
 | 
						|
         <repository>
 | 
						|
-            <id>spigotmc-releases</id>
 | 
						|
-            <url>https://hub.spigotmc.org/nexus/content/repositories/releases/</url>
 | 
						|
+            <id>destroystokyo-releases</id>
 | 
						|
+            <url>https://repo.destroystokyo.com/repository/maven-releases/</url>
 | 
						|
         </repository>
 | 
						|
         <snapshotRepository>
 | 
						|
-            <id>spigotmc-snapshots</id>
 | 
						|
-            <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
 | 
						|
+            <id>destroystokyo-snapshots</id>
 | 
						|
+            <url>https://repo.destroystokyo.com/repository/maven-snapshots/</url>
 | 
						|
         </snapshotRepository>
 | 
						|
     </distributionManagement>
 | 
						|
 
 | 
						|
-    <repositories>
 | 
						|
-        <repository>
 | 
						|
-            <id>spigotmc-public</id>
 | 
						|
-            <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
 | 
						|
-        </repository>
 | 
						|
-    </repositories>
 | 
						|
-
 | 
						|
     <pluginRepositories>
 | 
						|
         <pluginRepository>
 | 
						|
             <id>spigotmc-public</id>
 | 
						|
@@ -0,0 +0,0 @@
 | 
						|
         </pluginRepository>
 | 
						|
     </pluginRepositories>
 | 
						|
 
 | 
						|
+    <repositories>
 | 
						|
+        <repository>
 | 
						|
+            <id>spigotmc-public</id>
 | 
						|
+            <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
 | 
						|
+        </repository>
 | 
						|
+        <repository>
 | 
						|
+            <id>sonatype</id>
 | 
						|
+            <url>https://oss.sonatype.org/content/groups/public/</url>
 | 
						|
+        </repository>
 | 
						|
+    </repositories>
 | 
						|
+
 | 
						|
     <dependencies>
 | 
						|
         <dependency>
 | 
						|
             <groupId>commons-lang</groupId>
 | 
						|
@@ -0,0 +0,0 @@
 | 
						|
             <version>1.1.1</version>
 | 
						|
             <scope>compile</scope>
 | 
						|
         </dependency>
 | 
						|
+        <!-- bundled with Minecraft, shouldn't ever change -->
 | 
						|
+        <dependency>
 | 
						|
+            <groupId>com.google.code.findbugs</groupId>
 | 
						|
+            <artifactId>jsr305</artifactId>
 | 
						|
+            <version>1.3.9</version>
 | 
						|
+            <scope>compile</scope>
 | 
						|
+        </dependency>
 | 
						|
         <!-- bundled with Minecraft, should be kept in sync -->
 | 
						|
         <dependency>
 | 
						|
             <groupId>com.google.guava</groupId>
 | 
						|
@@ -0,0 +0,0 @@
 | 
						|
     </dependencies>
 | 
						|
 
 | 
						|
     <build>
 | 
						|
+        <defaultGoal>clean install</defaultGoal>
 | 
						|
         <plugins>
 | 
						|
             <plugin>
 | 
						|
                 <groupId>org.apache.maven.plugins</groupId>
 | 
						|
@@ -0,0 +0,0 @@
 | 
						|
                     </dependency>
 | 
						|
                 </dependencies>
 | 
						|
             </plugin>
 | 
						|
-            <plugin>
 | 
						|
-                <groupId>org.codehaus.mojo</groupId>
 | 
						|
-                <artifactId>animal-sniffer-maven-plugin</artifactId>
 | 
						|
-                <version>1.15</version>
 | 
						|
-                <executions>
 | 
						|
-                    <execution>
 | 
						|
-                        <phase>process-classes</phase>
 | 
						|
-                        <goals>
 | 
						|
-                            <goal>check</goal>
 | 
						|
-                        </goals>
 | 
						|
-                    </execution>
 | 
						|
-                </executions>
 | 
						|
-                <configuration>
 | 
						|
-                    <signature>
 | 
						|
-                        <groupId>org.codehaus.mojo.signature</groupId>
 | 
						|
-                        <artifactId>java16</artifactId>
 | 
						|
-                        <version>1.1</version>
 | 
						|
-                    </signature>
 | 
						|
-                </configuration>
 | 
						|
-            </plugin>
 | 
						|
             <plugin>
 | 
						|
                 <groupId>org.apache.maven.plugins</groupId>
 | 
						|
                 <artifactId>maven-shade-plugin</artifactId>
 | 
						|
@@ -0,0 +0,0 @@
 | 
						|
                     </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>
 | 
						|
--
 |