mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
c7d5e094e7
* Updated repository lists to reduce dependency on Jitpack and removed unused repositories. * Adding artifactory_contextUrl parameter
25 lines
537 B
Groovy
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')
|
|
}
|