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
Migrate Shadow's coordinate
I didn't update Shadow to v9 as it requires min Gradle 8.11

https://github.com/GradleUp/shadow/releases/tag/8.3.0
  • Loading branch information
Goooler committed Sep 18, 2025
commit 6f49b02084b01c4576893490793b37b6dda37684
4 changes: 4 additions & 0 deletions benchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ tasks.processJmhResources {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}

tasks.shadowJar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}

tasks.jmhJar {
archiveBaseName.set("benchmarks")
archiveVersion.set("")
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ knit = "0.5.0"
bcv = "0.16.2"
animalsniffer = "1.7.1"
protobuf = "0.8.19"
shadow = "8.1.1"
shadow = "8.3.9"
jmh = "0.7.2"
jmh-core = "1.37"
guava = "31.1-jre"
Expand Down Expand Up @@ -58,6 +58,6 @@ moshi-codegen = { module = "com.squareup.moshi:moshi-kotlin-codegen", version.re
[plugins]
knit = { id = "org.jetbrains.kotlinx.knit", version.ref = "knit" }
jmh = { id = "me.champeau.jmh", version.ref = "jmh" }
shadow = { id = "com.github.johnrengelman.shadow", version.ref = "shadow" }
shadow = { id = "com.gradleup.shadow", version.ref = "shadow" }
protobuf = { id = "com.google.protobuf", version.ref = "protobuf" }
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }