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 20, 2024
1 parent 47a0101 commit fbcc015
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ dependency-check = "10.0.4"
eclipse-collections = "12.0.0.M3"
ehcache3 = "3.10.8"
errorprone = "2.34.0"
errorprone-plugin = "4.0.1"
errorprone-plugin = "4.1.0"
errorprone-support = "0.18.0"
expiring-map = "0.5.11"
fast-filter = "1.0.2"
fastutil = "8.5.14"
fastutil = "8.5.15"
felix-framework = "7.0.5"
felix-scr = "2.2.12"
findsecbugs = "1.13.0"
Expand Down Expand Up @@ -69,7 +69,7 @@ lincheck = "2.34"
mockito = "5.14.2"
nexus-publish = "2.0.0"
nullaway = "0.12.0"
nullaway-plugin = "2.0.0"
nullaway-plugin = "2.1.0"
okhttp-bom = "4.12.0"
okio-bom = "3.9.1"
osgi-annotations = "1.5.1"
Expand Down
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 fbcc015

Please sign in to comment.