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"
|
|
|
|
|
2019-05-15 15:40:12 +00:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
2019-05-20 10:57:56 +00:00
|
|
|
testImplementation "junit:junit:$junit_version"
|
2019-05-15 15:40:12 +00:00
|
|
|
|
2019-05-20 10:57:56 +00:00
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
2019-05-15 15:40:12 +00:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
2017-09-05 08:50:51 +00:00
|
|
|
testCompile project(':node-driver')
|
2016-06-22 13:02:50 +00:00
|
|
|
}
|