corda/experimental/build.gradle
Andrius Dagys c7d5e094e7 Updated repository lists to reduce dependency on Jitpack and removed … (#3891)
* Updated repository lists to reduce dependency on Jitpack and removed unused repositories.

* Adding artifactory_contextUrl parameter
2018-09-10 10:19:01 +01:00

25 lines
537 B
Groovy

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