Upgrade dependencies and centralise some more version numbers in the root gradle file

This commit is contained in:
Mike Hearn
2017-01-03 15:15:23 +01:00
parent 53903c6521
commit 119d00c384
23 changed files with 89 additions and 74 deletions

View File

@ -42,7 +42,7 @@ configurations {
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile "junit:junit:$junit_version"
// Corda integration dependencies
runtime project(path: ":node:capsule", configuration: 'runtimeArtifacts')
@ -145,4 +145,4 @@ task runSeller(type: JavaExec) {
main = 'net.corda.traderdemo.TraderDemoKt'
args '--role'
args 'SELLER'
}
}