From 9e315343a720a550c61568b70657ad2076501022 Mon Sep 17 00:00:00 2001 From: Zach Brown <zach.brown@destroystokyo.com> Date: Thu, 19 Mar 2015 19:41:15 -0500 Subject: [PATCH] POM Changes diff --git a/pom.xml b/pom.xml index 91627ff..fd051da 100644 --- 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.8.8-R0.1-SNAPSHOT</version> - <name>Spigot</name> - <url>http://www.spigotmc.org</url> + <name>PaperSpigot</name> + <url>https://hub.spigotmc.org/stash/projects/PAPER/</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -16,13 +16,14 @@ <minecraft_version>1_8_R3</minecraft_version> <buildtag.prefix>git-Bukkit-</buildtag.prefix> <buildtag.suffix></buildtag.suffix> - <maven.compiler.source>1.6</maven.compiler.source> - <maven.compiler.target>1.6</maven.compiler.target> + <!--PaperSpigot - Bump to 1.8 - This will haunt me --> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> </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> @@ -34,8 +35,8 @@ <version>3.0.3</version> </dependency> <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> @@ -96,6 +97,11 @@ <id>spigotmc-public</id> <url>https://hub.spigotmc.org/nexus/content/groups/public/</url> </pluginRepository> + <!-- PaperSpigot - Repo for gitdescribe --> + <pluginRepository> + <id>destroystokyo</id> + <url>https://ci.destroystokyo.com/plugin/repository/everything/</url> + </pluginRepository> </pluginRepositories> <!-- This builds a completely 'ready to start' jar with all dependencies inside --> @@ -103,36 +109,22 @@ <defaultGoal>install</defaultGoal> <plugins> <plugin> - <groupId>net.md-5</groupId> - <artifactId>scriptus</artifactId> - <version>0.2</version> - <executions> - <execution> - <id>ex-spigot</id> - <configuration> - <format>git-Spigot-%s</format> - <scmDirectory>../</scmDirectory> - <descriptionProperty>spigot.desc</descriptionProperty> - </configuration> - <phase>initialize</phase> - <goals> - <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> - <goals> - <goal>describe</goal> - </goals> - </execution> - </executions> - </plugin> + <groupId>com.lukegb.mojo</groupId> + <artifactId>gitdescribe-maven-plugin</artifactId> + <version>1.3</version> + <configuration> + <outputPrefix>git-PaperSpigot-</outputPrefix> + <scmDirectory>..</scmDirectory> + </configuration> + <executions> + <execution> + <phase>compile</phase> + <goals> + <goal>gitdescribe</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> @@ -142,7 +134,7 @@ <manifestEntries> <Main-Class>org.bukkit.craftbukkit.Main</Main-Class> <Implementation-Title>CraftBukkit</Implementation-Title> - <Implementation-Version>${spigot.desc}${craftbukkit.desc}</Implementation-Version> + <Implementation-Version>${describe}</Implementation-Version> <Implementation-Vendor>Bukkit Team</Implementation-Vendor> <Specification-Title>Bukkit</Specification-Title> <Specification-Version>${api.version}</Specification-Version> @@ -172,26 +164,6 @@ </configuration> </plugin> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>animal-sniffer-maven-plugin</artifactId> - <version>1.13</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> <version>2.3</version> diff --git a/src/main/java/net/minecraft/server/PathfinderGoalNearestAttackableTarget.java b/src/main/java/net/minecraft/server/PathfinderGoalNearestAttackableTarget.java index c110e0c..5540dde 100644 --- a/src/main/java/net/minecraft/server/PathfinderGoalNearestAttackableTarget.java +++ b/src/main/java/net/minecraft/server/PathfinderGoalNearestAttackableTarget.java @@ -11,7 +11,7 @@ public class PathfinderGoalNearestAttackableTarget<T extends EntityLiving> exten protected final Class<T> a; private final int g; protected final PathfinderGoalNearestAttackableTarget.DistanceComparator b; - protected Predicate<? super T> c; + protected Predicate c; protected EntityLiving d; public PathfinderGoalNearestAttackableTarget(EntityCreature entitycreature, Class<T> oclass, boolean flag) { 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) { -- 2.7.1