Skip to content

Commit

Permalink
Don't include non-nbt adventure
Browse files Browse the repository at this point in the history
  • Loading branch information
SamB440 committed Sep 30, 2024
1 parent 61299e3 commit 24ffd9e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions sponge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ repositories {
}

sponge {
apiVersion("11.1.0-SNAPSHOT")
apiVersion("12.0.0-SNAPSHOT")
loader {
name(PluginLoaders.JAVA_PLAIN)
version("2.4.1-SNAPSHOT")
version("2.5.1-SNAPSHOT")
}

plugin("packetevents") {
Expand All @@ -37,7 +37,9 @@ sponge {

dependencies {
compileOnly(libs.netty)
shadow(libs.adventure.nbt)
shadow(libs.adventure.nbt) {
isTransitive = false
}
shadow(project(":api", "shadow"))
shadow(project(":netty-common"))

Expand Down

0 comments on commit 24ffd9e

Please sign in to comment.