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
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ allprojects {
apply(plugin = "java")

group = "com.leonardobishop"
version = "3.16"
version = "3.16.1"

java {
toolchain {
Expand Down
7 changes: 6 additions & 1 deletion bukkit/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.github.jengelman.gradle.plugins.shadow.transformers.ServiceFileTransformer

plugins {
id("com.gradleup.shadow")
}
Expand Down Expand Up @@ -150,7 +152,7 @@ dependencies {
// HikariCP
implementation("com.zaxxer:HikariCP:7.0.2")
// slf4j
implementation("org.slf4j:slf4j-nop:1.7.36")
implementation("org.slf4j:slf4j-nop:2.0.17")
// hppc
implementation("com.carrotsearch:hppc:0.10.0")
// bungeecord-chat
Expand All @@ -174,6 +176,9 @@ tasks.shadowJar {
exclude(dependency("org.slf4j:.*:.*"))
}

// Required for proper relocated SLF4J provider detection
transform(ServiceFileTransformer::class.java)

archiveClassifier.set(null as String?)
}

Expand Down