Migrate Gradle deprecations (#1745)

This commit is contained in:
Daniel Chao
2026-07-08 12:05:19 -07:00
committed by GitHub
parent 25d86db416
commit 7a7f3abc50
22 changed files with 356 additions and 323 deletions
+3 -3
View File
@@ -69,12 +69,12 @@ sourceSets {
// Then the path to the jar file and the toolchain's `java` binary
// are injected into tests as properties.
val externalReader by sourceSets.creating {}
val externalReader = sourceSets.create("externalReader") {}
dependencies { "externalReaderImplementation"(libs.msgpack) }
val externalReaderJar by
tasks.registering(Jar::class) {
val externalReaderJar =
tasks.register<Jar>("externalReaderJar") {
description = "Builds an external reader executable jar file"
archiveBaseName = "external-reader"
archiveVersion = ""