diff --git a/brigadier/pom.xml b/brigadier/pom.xml
index 861c3f7d..ee5efeee 100644
--- a/brigadier/pom.xml
+++ b/brigadier/pom.xml
@@ -56,7 +56,7 @@
com.mojang
brigadier
- 1.0.17
+ 1.0.18
provided
diff --git a/bungee/pom.xml b/bungee/pom.xml
index fb1bc099..d6fd4b99 100644
--- a/bungee/pom.xml
+++ b/bungee/pom.xml
@@ -32,7 +32,7 @@
net.md-5
bungeecord-api
- 1.13-SNAPSHOT
+ 1.18-R0.1-SNAPSHOT
provided
diff --git a/bungee/src/main/java/co/aikar/commands/BungeeCommandContexts.java b/bungee/src/main/java/co/aikar/commands/BungeeCommandContexts.java
index 93a55c94..6ee74722 100644
--- a/bungee/src/main/java/co/aikar/commands/BungeeCommandContexts.java
+++ b/bungee/src/main/java/co/aikar/commands/BungeeCommandContexts.java
@@ -65,7 +65,15 @@ public class BungeeCommandContexts extends CommandContexts finalFilter.equals(ACFUtil.simplifyString(color.name())));
}
- ChatColor match = ACFUtil.simpleMatch(ChatColor.class, first);
+ ChatColor match = null;
+ String simplified = ACFUtil.simplifyString(first);
+ for (ChatColor chatColor : ChatColor.values()) {
+ String simple = ACFUtil.simplifyString(chatColor.name());
+ if (simplified.equals(simple)) {
+ match = chatColor;
+ break;
+ }
+ }
if (match == null) {
String valid = colors
.map(color -> "" + ACFUtil.simplifyString(color.name()) + "")
diff --git a/core/pom.xml b/core/pom.xml
index 2ea9a4fe..c741cdea 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -55,7 +55,7 @@
net.jodah
expiringmap
- 0.5.9
+ 0.5.10
compile
diff --git a/paper/pom.xml b/paper/pom.xml
index 581d04a4..6c324166 100644
--- a/paper/pom.xml
+++ b/paper/pom.xml
@@ -64,11 +64,5 @@
1.15.2-R0.1-SNAPSHOT
provided
-
- com.destroystokyo.paper
- paper-mojangapi
- 1.15.2-R0.1-SNAPSHOT
- provided
-
diff --git a/pom.xml b/pom.xml
index 56844199..d1a11023 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,9 +32,9 @@
UTF-8
- 5.4.0
+ 5.8.2
1.4.0
- 2.25.1
+ 4.1.0
@@ -77,12 +77,12 @@
org.apache.maven.plugins
maven-surefire-plugin
- 2.22.2
+ 3.0.0-M5
org.apache.maven.plugins
maven-source-plugin
- 3.2.0
+ 3.2.1
attach-sources
@@ -95,7 +95,7 @@
org.apache.maven.plugins
maven-shade-plugin
- 3.2.3
+ 3.2.4
package
@@ -155,13 +155,13 @@
com.google.guava
guava
- 15.0
+ 31.0.1-jre
provided
org.jetbrains
annotations
- 15.0
+ 23.0.0
provided