Skip to content

Commit

Permalink
Clean up relocations
Browse files Browse the repository at this point in the history
  • Loading branch information
md5sha256 committed May 6, 2024
1 parent 5323492 commit f3032a2
Showing 1 changed file with 20 additions and 17 deletions.
37 changes: 20 additions & 17 deletions hyperverse-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -128,23 +128,26 @@ tasks {
}
}

relocate("io.papermc.lib", "se.hyperver.hyperverse.libs.paperlib")
relocate("org.bstats", "se.hyperver.hyperverse.libs.bstats")
relocate("co.aikar.commands", "se.hyperver.hyperverse.libs.aikar.commands")
relocate("co.aikar.locales", "se.hyperver.hyperverse.libs.aikar.locales")
relocate("co.aikar.taskchain", "se.hyperver.hyperverse.libs.taskchain")
relocate("co.aikar.util", "se.hyperver.hyperverse.libs.aikar.util")
relocate("net.jodah.expiringmap", "se.hyperver.hyperverse.libs.expiringmap")
relocate("net.kyori", "se.hyperver.hyperverse.libs.kyori")
relocate("cloud.commandframework", "se.hyperver.hyperverse.libs.cloud")
relocate("org.spongepowered.configurate", "se.hyperver.hyperverse.libs.configurate")
relocate("io.leangen.geantyref", "se.hyperver.hyperverse.libs.geantyref")
relocate("org.checkerframework", "se.hyperver.hyperverse.libs.checkerframework")
relocate("com.typesafe.config", "se.hyperver.hyperverse.libs.hocon")
relocate("com.google.inject", "se.hyperver.hyperverse.libs.guice")
relocate("javax.inject", "se.hyperver.hyperverse.libs.javax.inject")
relocate("org.aopalliance", "se.hyperver.hyperverse.libs.aop")
relocate("javax.annotation", "se.hyperver.hyperverse.libs.javax.annotation")
relocate("io.papermc.lib", "org.incendo.hyperverse.libs.paperlib")
relocate("org.bstats", "org.incendo.hyperverse.libs.bstats")
relocate("co.aikar.commands", "org.incendo.hyperverse.libs.aikar.commands")
relocate("co.aikar.locales", "org.incendo.hyperverse.libs.aikar.locales")
relocate("co.aikar.taskchain", "org.incendo.hyperverse.libs.taskchain")
relocate("co.aikar.util", "org.incendo.hyperverse.libs.aikar.util")
relocate("net.jodah.expiringmap", "org.incendo.hyperverse.libs.expiringmap")
relocate("net.kyori", "org.incendo.hyperverse.libs.kyori")
relocate("cloud.commandframework", "org.incendo.hyperverse.libs.cloud")
relocate("org.spongepowered.configurate", "org.incendo.hyperverse.libs.configurate")
relocate("io.leangen.geantyref", "org.incendo.hyperverse.libs.geantyref")
relocate("org.checkerframework", "org.incendo.hyperverse.libs.checkerframework")
relocate("com.typesafe.config", "org.incendo.hyperverse.libs.hocon")
relocate("com.google.inject", "org.incendo.hyperverse.libs.guice")
relocate("javax.inject", "org.incendo.hyperverse.libs.javax.inject")
relocate("org.aopalliance", "org.incendo.hyperverse.libs.aop")
relocate("javax.annotation", "org.incendo.hyperverse.libs.javax.annotation")
relocate("org.intellij.lang.annotations", "org.incendo.hyperverse.libs.intellij.annotations")
relocate("org.jetbrains.annotations", "org.incendo.hyperverse.libs.jetbrains.annotations")
relocate("com.google.errorprone", "org.incendo.hyperverse.libs.errorprone")
}

build {
Expand Down

0 comments on commit f3032a2

Please sign in to comment.