Skip to content
Merged
Changes from 4 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
5 changes: 4 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("net.buildtheearth:projection:1.+")
Comment thread
kyanvde marked this conversation as resolved.
Outdated

compileOnly("com.fastasyncworldedit:FastAsyncWorldEdit-Core")
compileOnly("com.fastasyncworldedit:FastAsyncWorldEdit-Bukkit") { isTransitive = false }
Expand Down Expand Up @@ -54,6 +54,9 @@ 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.
relocate("net.buildtheearth.buildteamtools", "net.buildtheearth.buildteamtools")
}

tasks.assemble {
Expand Down
Loading