From 85550c5750abc14361676cca4a574bbb870fb3f1 Mon Sep 17 00:00:00 2001 From: nossr50 Date: Mon, 17 Feb 2020 18:46:48 -0800 Subject: [PATCH] Add kashike's text lib to dependencies --- mcmmo-core/build.gradle.kts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/mcmmo-core/build.gradle.kts b/mcmmo-core/build.gradle.kts index 53ce74c35..4f81ae5cb 100644 --- a/mcmmo-core/build.gradle.kts +++ b/mcmmo-core/build.gradle.kts @@ -19,9 +19,7 @@ tasks { include(dependency("com.typesafe:config")) include(dependency("co.aikar:acf-core")) include(dependency("co.aikar:acf-bukkit")) -// include(dependency("co.aikar:locales")) -// include(dependency("co.aikar:table")) -// include(dependency("net.jodah:expiring-map")) + include(dependency("net.kyori:text-api")) exclude(dependency("org.spigotmc:spigot")) } relocate("org.apache.commons.logging", "com.gmail.nossr50.commons.logging") @@ -32,8 +30,8 @@ tasks { relocate("co.aikar.locales", "com.gmail.nossr50.aikar.locales") relocate("co.aikar.table", "com.gmail.nossr50.aikar.table") relocate("net.jodah.expiringmap", "com.gmail.nossr50.expiringmap") + relocate("net.kyori.text", "com.gmail.nossr50.kashike.text") -// archiveBaseName.set("mcMMO") mergeServiceFiles() } @@ -64,9 +62,7 @@ dependencies { api("org.spongepowered:configurate-hocon:3.7-SNAPSHOT") api("co.aikar:acf-core:0.5.0-SNAPSHOT") //Don't change without updating the artifacts for its dependencies (see the other comments) api("co.aikar:acf-paper:0.5.0-SNAPSHOT") //Don't change without updating the artifacts for its dependencies (see the other comments) -// api("co.aikar:locales:1.0-SNAPSHOT") //ACF 0.5.0-SNAPSHOT is dependent on this version of locales -// api("co.aikar:table:1.0.0-SNAPSHOT") //ACF 0.5.0-SNAPSHOT is dependent on this version of table -// api("net.jodah:expiring-map:0.5.8") //ACF 0.5.0-SNAPSHOT is dependent on this version of expiring map + api("net.kyori:text-api:3.0.0") implementation("org.jetbrains:annotations:17.0.0") implementation("org.apache.maven.scm:maven-scm-provider-gitexe:1.8.1") implementation("org.bstats:bstats-bukkit:1.4")