mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
34 lines
692 B
Groovy
34 lines
692 B
Groovy
group 'com.r3cev.prototyping'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven {
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
}
|
|
jcenter()
|
|
}
|
|
|
|
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')
|
|
}
|