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