From 8d19ef54fd68265078508c5ccf16f479c068f7ff Mon Sep 17 00:00:00 2001 From: Chris Rankin Date: Wed, 25 Jul 2018 11:11:45 +0100 Subject: [PATCH] Fix Notary Healthcheck not to run unit tests when assembling. --- tools/notary-healthcheck/contract/build.gradle | 2 +- tools/notary-healthcheck/cordapp/build.gradle | 8 +------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/tools/notary-healthcheck/contract/build.gradle b/tools/notary-healthcheck/contract/build.gradle index cf43b03254..e9545c120d 100644 --- a/tools/notary-healthcheck/contract/build.gradle +++ b/tools/notary-healthcheck/contract/build.gradle @@ -28,7 +28,7 @@ dependencies { cordapp { info { vendor "R3" - version "$corda_release_version" + version corda_release_version } } diff --git a/tools/notary-healthcheck/cordapp/build.gradle b/tools/notary-healthcheck/cordapp/build.gradle index 6f2d092609..b1c3737906 100644 --- a/tools/notary-healthcheck/cordapp/build.gradle +++ b/tools/notary-healthcheck/cordapp/build.gradle @@ -36,16 +36,10 @@ configurations { integrationTestRuntime.extendsFrom testRuntime } - -jar { - dependsOn test // Apparently not default. - version = "$corda_release_version" -} - cordapp { info { vendor "R3" - version "$corda_release_version" + version corda_release_version } }