Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
implementation(libs.com.googlecode.json.simple)
implementation(libs.bstats.bukkit)
implementation(platform(libs.fawe.bom))
implementation("net.buildtheearth:projection:1.0.3")
implementation(libs.net.buildtheearth.projection)

compileOnly("com.fastasyncworldedit:FastAsyncWorldEdit-Core")
compileOnly("com.fastasyncworldedit:FastAsyncWorldEdit-Bukkit") { isTransitive = false }
Expand Down Expand Up @@ -54,6 +54,10 @@ tasks.shadowJar {

relocationPrefix = "net.buildtheearth.buildteamtools.shaded"
enableAutoRelocation = true

// Prevents the plugin itself from being relocated by autorelocate
Comment thread
kyanvde marked this conversation as resolved.
// This is needed because net.buildtheearth.projection shares the same package namespace
relocate("net.buildtheearth.buildteamtools", "net.buildtheearth.buildteamtools")
}

tasks.assemble {
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ alpslib-utils = "1.4.2" # https://mvn.alps-bte.com/service/rest/repository/brows
fawe-bom = "1.55" # Ref: https://github.com/IntellectualSites/bom
bstats = "3.1.0" # https://central.sonatype.com/artifact/org.bstats/bstats-bukkit
bluemap-api = "2.7.7" # Ref: https://github.com/BlueMap-Minecraft/BlueMapAPI
net-buildtheearth-projection = "1.+" # Ref: https://github.com/BuildTheEarth/projection

[libraries]
com-alpsbte-alpslib-alpslib-libpsterra = { module = "com.alpsbte.alpslib:alpslib-libpsterra", version.ref = "com-alpsbte-alpslib-alpslib-libpsterra" }
Expand All @@ -39,6 +40,7 @@ alpslib-utils = { module = "com.alpsbte.alpslib:alpslib-utils", version.ref = "a
fawe-bom = { module = "com.intellectualsites.bom:bom-newest", version.ref = "fawe-bom" }
bstats-bukkit = { module = "org.bstats:bstats-bukkit", version.ref = "bstats" }
bluemap-api = { module = "de.bluecolored:bluemap-api", version.ref = "bluemap-api" }
net-buildtheearth-projection = { module = "net.buildtheearth:projection", version.ref = "net-buildtheearth-projection"}

[plugins]
lombok = { id = "io.freefair.lombok", version.ref = "io-freefair-lombok" }
Expand Down
Loading