Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
e87859d8a5
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: d58803c2 SPIGOT-4597: Make BlockDropItemEvent use a list d450fdf1 Add note about Maven repository usage to pom.xml CraftBukkit Changes:ed274c51
SPIGOT-4597: Make BlockDropItemEvent use a list1734f378
SPIGOT-4598: Shift click on custom workbench inventory causes crasha65b73ad
Add note about Maven repository usage to pom.xml
28 Zeilen
758 B
Diff
28 Zeilen
758 B
Diff
From af5c59b98dedbd732043a1f9155a94fb96158383 Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Fri, 1 Apr 2016 00:02:47 -0400
|
|
Subject: [PATCH] Add FastUtil to Bukkit
|
|
|
|
Doesn't expose to plugins, just allows Paper-API to use it for optimization
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
index a613cf963..f8f12595b 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -50,6 +50,12 @@
|
|
</pluginRepositories>
|
|
|
|
<dependencies>
|
|
+ <dependency>
|
|
+ <groupId>it.unimi.dsi</groupId>
|
|
+ <artifactId>fastutil</artifactId>
|
|
+ <version>8.2.2</version>
|
|
+ <scope>provided</scope>
|
|
+ </dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
--
|
|
2.20.1
|
|
|