From d217784a55812e5bef194ef7b98722cc0afe9452 Mon Sep 17 00:00:00 2001 From: Clinton Alexander Date: Thu, 17 Nov 2016 17:13:17 +0000 Subject: [PATCH] Removed redundant changes. --- samples/network-visualiser/build.gradle | 4 ---- samples/simm-valuation-demo/build.gradle | 1 + samples/trader-demo/build.gradle | 3 +++ 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/network-visualiser/build.gradle b/samples/network-visualiser/build.gradle index 6098279dea..7b493afc1a 100644 --- a/samples/network-visualiser/build.gradle +++ b/samples/network-visualiser/build.gradle @@ -25,10 +25,6 @@ repositories { maven { url 'https://dl.bintray.com/kotlin/exposed' } - // A hack to allow the samples to use the locally built corda.jar. Do not copy in other cordapps. - flatDir { - dirs rootProject.buildDir.toString() + '/libs' - } } dependencies { diff --git a/samples/simm-valuation-demo/build.gradle b/samples/simm-valuation-demo/build.gradle index 1319eac232..5764fe7a62 100644 --- a/samples/simm-valuation-demo/build.gradle +++ b/samples/simm-valuation-demo/build.gradle @@ -48,6 +48,7 @@ sourceSets { } } + dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" testCompile group: 'junit', name: 'junit', version: '4.11' diff --git a/samples/trader-demo/build.gradle b/samples/trader-demo/build.gradle index 63c0aeaea7..3658fdb200 100644 --- a/samples/trader-demo/build.gradle +++ b/samples/trader-demo/build.gradle @@ -75,6 +75,9 @@ dependencies { compile("org.graphstream:gs-ui:1.3") { exclude group: "bouncycastle" } + + // Cordapp dependencies + // Specify your cordapp's dependencies below, including dependent cordapps } task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install']) {