Add kashike's text lib to dependencies

This commit is contained in:
nossr50 2020-02-17 18:46:48 -08:00
parent 3c382a11ed
commit 85550c5750

View File

@ -19,9 +19,7 @@ tasks {
include(dependency("com.typesafe:config")) include(dependency("com.typesafe:config"))
include(dependency("co.aikar:acf-core")) include(dependency("co.aikar:acf-core"))
include(dependency("co.aikar:acf-bukkit")) include(dependency("co.aikar:acf-bukkit"))
// include(dependency("co.aikar:locales")) include(dependency("net.kyori:text-api"))
// include(dependency("co.aikar:table"))
// include(dependency("net.jodah:expiring-map"))
exclude(dependency("org.spigotmc:spigot")) exclude(dependency("org.spigotmc:spigot"))
} }
relocate("org.apache.commons.logging", "com.gmail.nossr50.commons.logging") 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.locales", "com.gmail.nossr50.aikar.locales")
relocate("co.aikar.table", "com.gmail.nossr50.aikar.table") relocate("co.aikar.table", "com.gmail.nossr50.aikar.table")
relocate("net.jodah.expiringmap", "com.gmail.nossr50.expiringmap") relocate("net.jodah.expiringmap", "com.gmail.nossr50.expiringmap")
relocate("net.kyori.text", "com.gmail.nossr50.kashike.text")
// archiveBaseName.set("mcMMO")
mergeServiceFiles() mergeServiceFiles()
} }
@ -64,9 +62,7 @@ dependencies {
api("org.spongepowered:configurate-hocon:3.7-SNAPSHOT") 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-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: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("net.kyori:text-api:3.0.0")
// 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
implementation("org.jetbrains:annotations:17.0.0") implementation("org.jetbrains:annotations:17.0.0")
implementation("org.apache.maven.scm:maven-scm-provider-gitexe:1.8.1") implementation("org.apache.maven.scm:maven-scm-provider-gitexe:1.8.1")
implementation("org.bstats:bstats-bukkit:1.4") implementation("org.bstats:bstats-bukkit:1.4")