corda/experimental/build.gradle

25 lines
544 B
Groovy
Raw Normal View History

2016-06-22 13:02:50 +00:00
group 'com.r3cev.prototyping'
version '1.0-SNAPSHOT'
apply plugin: 'kotlin'
compileKotlin {
kotlinOptions.suppressWarnings = true
}
compileTestKotlin {
kotlinOptions.suppressWarnings = true
}
2016-06-22 13:02:50 +00:00
dependencies {
compile project(':core')
compile project(':finance')
2016-06-22 13:02:50 +00:00
// ObjectWeb Asm: a library for synthesising and working with JVM bytecode.
compile "org.ow2.asm:asm:$asm_version"
compile "com.google.guava:guava:$guava_version"
testCompile "junit:junit:$junit_version"
testCompile project(':node-driver')
2016-06-22 13:02:50 +00:00
}