Removed redundant changes.

This commit is contained in:
Clinton Alexander 2016-11-17 17:13:17 +00:00
parent 25af5cde96
commit d217784a55
3 changed files with 4 additions and 4 deletions

View File

@ -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 {

View File

@ -48,6 +48,7 @@ sourceSets {
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile group: 'junit', name: 'junit', version: '4.11'

View File

@ -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']) {