2016-06-22 13:02:50 +00:00
|
|
|
group 'com.r3cev.prototyping'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
2016-06-27 12:55:55 +00:00
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.suppressWarnings = true
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.suppressWarnings = true
|
|
|
|
}
|
|
|
|
|
2016-06-22 13:02:50 +00:00
|
|
|
dependencies {
|
|
|
|
compile project(':core')
|
2018-12-19 18:02:51 +00:00
|
|
|
compile project(':finance:contracts')
|
|
|
|
compile project(':finance:workflows')
|
2016-06-22 13:02:50 +00:00
|
|
|
|
2017-03-08 14:07:57 +00:00
|
|
|
// ObjectWeb Asm: a library for synthesising and working with JVM bytecode.
|
2018-07-04 14:42:43 +00:00
|
|
|
compile "org.ow2.asm:asm:$asm_version"
|
2017-03-08 14:07:57 +00:00
|
|
|
|
2017-08-31 13:40:32 +00:00
|
|
|
compile "com.google.guava:guava:$guava_version"
|
|
|
|
|
2017-01-03 14:15:23 +00:00
|
|
|
testCompile "junit:junit:$junit_version"
|
2017-09-05 08:50:51 +00:00
|
|
|
testCompile project(':node-driver')
|
2016-06-22 13:02:50 +00:00
|
|
|
}
|