From 396a579c8b4dc8a04f8326153c754f7df473ffec Mon Sep 17 00:00:00 2001 From: Chris Rankin Date: Tue, 18 Feb 2020 09:09:18 +0000 Subject: [PATCH] NOTICK: Always use configured version of deterministic-rt.jar. (#5979) --- serialization-djvm/build.gradle | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/serialization-djvm/build.gradle b/serialization-djvm/build.gradle index 476c0c8e9b..a082370d25 100644 --- a/serialization-djvm/build.gradle +++ b/serialization-djvm/build.gradle @@ -12,10 +12,7 @@ description 'Serialization support for the DJVM' configurations { sandboxTesting - jdkRt.resolutionStrategy { - // Always check the repository for a newer SNAPSHOT. - cacheChangingModulesFor 0, 'seconds' - } + jdkRt } dependencies { @@ -35,7 +32,7 @@ dependencies { // Test utilities testImplementation "org.assertj:assertj-core:$assertj_version" testRuntimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version" - jdkRt "net.corda:deterministic-rt:latest.integration" + jdkRt "net.corda:deterministic-rt:$deterministic_rt_version" // The DJVM will need this classpath to run the unit tests. sandboxTesting files(sourceSets.getByName("test").output)