Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
09692269ca
This is a port of https://github.com/PaperMC/Paper/blob/ver/1.8.8/Spigot-Server-Patches/0040-Toggleable-player-crits-helps-mitigate-hacked-client.patch Also adds me to the MIT list.
34 Zeilen
960 B
Diff
34 Zeilen
960 B
Diff
From 0ed1405b722f13790683af1131a2f730973de468 Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Fri, 1 Apr 2016 00:02:47 -0400
|
|
Subject: [PATCH] add Trove and FastUtil to Bukkit
|
|
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
index 4220760..623d9ea 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -56,6 +56,19 @@
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
+ <groupId>net.sf.trove4j</groupId>
|
|
+ <artifactId>trove4j</artifactId>
|
|
+ <version>3.0.3</version>
|
|
+ <!-- Trove Provided by CraftBukkit -->
|
|
+ <scope>provided</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>co.aikar</groupId>
|
|
+ <artifactId>fastutil-lite</artifactId>
|
|
+ <version>1.0</version>
|
|
+ <scope>provided</scope>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.6</version>
|
|
--
|
|
2.7.4
|
|
|