mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
1df56f4369
It's breaking our maven deployments. This should be fixed properly in the future when I have more time and have had less to drink.
34 lines
973 B
Diff
34 lines
973 B
Diff
From bab3dd6f3335c4da837a24234ac0455bcedd6a0f 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 48c2e544..5336fe55 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -55,6 +55,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.13.0.windows.1
|
|
|