Skip to content

Commit

Permalink
avoid stale simulation results due to caching the report output
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Aug 22, 2024
1 parent 2e04537 commit 598b7b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ checker-framework = "3.46.0"
checkstyle = "10.17.0"
coherence = "22.06.2"
commons-collections4 = "4.4"
commons-compress = "1.27.0"
commons-compress = "1.27.1"
commons-io = "2.16.1"
commons-lang3 = "3.16.0"
commons-math3 = "3.6.1"
Expand Down Expand Up @@ -41,7 +41,7 @@ hamcrest = "3.0"
hazelcast = "5.3.7"
httpclient = "4.5.14"
idea = "1.1.8"
jackrabbit = "1.66.0"
jackrabbit = "1.68.0"
jackson = "2.17.2"
jacoco = "0.8.12"
jakarta-inject = "2.0.1"
Expand All @@ -68,7 +68,7 @@ kotlin = "2.0.10"
lincheck = "2.33"
mockito = "5.12.0"
nexus-publish = "2.0.0"
nullaway = "0.11.1"
nullaway = "0.11.2"
nullaway-plugin = "2.0.0"
okhttp-bom = "4.12.0"
okio-bom = "3.9.0"
Expand Down
2 changes: 2 additions & 0 deletions simulator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ tasks.register<Rewrite>("rewrite")
tasks.withType<JavaExec>().configureEach {
dependsOn(tasks.processResources, tasks.compileJava)
classpath(sourceSets["main"].runtimeClasspath)
inputs.properties(caffeineSystemProperties())
systemProperties(caffeineSystemProperties())
outputs.upToDateWhen { false }
outputs.cacheIf { false }
jvmArgs(defaultJvmArgs())
}

Expand Down

0 comments on commit 598b7b9

Please sign in to comment.