Skip to content

Commit

Permalink
fix gradle deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Oct 19, 2024
1 parent 47a0101 commit 4aa88e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jcache/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ tasks.named<Javadoc>("javadoc").configure {
tasks.withType<Test>().configureEach {
useJUnitPlatform()
dependsOn(unzipTestKit)
testClassesDirs += layout.buildDirectory.files("tck")
testClassesDirs = files(testClassesDirs, layout.buildDirectory.files("tck"))

project(":caffeine").plugins.withId("java-library") {
val caffeineJar = project(":caffeine").tasks.named<Jar>("jar")
Expand Down

0 comments on commit 4aa88e1

Please sign in to comment.