2016-06-22 13:02:50 +00:00
|
|
|
group 'com.r3cev.prototyping'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
repositories {
|
2016-08-31 14:20:44 +00:00
|
|
|
mavenLocal()
|
2016-06-22 13:02:50 +00:00
|
|
|
mavenCentral()
|
2016-08-31 14:20:44 +00:00
|
|
|
maven {
|
|
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
|
|
}
|
|
|
|
jcenter()
|
2016-06-22 13:02:50 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 12:55:55 +00:00
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.suppressWarnings = true
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.suppressWarnings = true
|
|
|
|
}
|
|
|
|
|
2016-06-22 13:02:50 +00:00
|
|
|
dependencies {
|
|
|
|
compile project(':core')
|
2016-11-04 10:28:42 +00:00
|
|
|
compile project(':finance')
|
2016-06-22 13:02:50 +00:00
|
|
|
|
2017-03-08 14:07:57 +00:00
|
|
|
// ObjectWeb Asm: a library for synthesising and working with JVM bytecode.
|
|
|
|
compile "org.ow2.asm:asm:5.0.4"
|
|
|
|
|
2017-08-31 13:40:32 +00:00
|
|
|
compile "com.google.guava:guava:$guava_version"
|
|
|
|
|
2017-01-03 14:15:23 +00:00
|
|
|
testCompile "junit:junit:$junit_version"
|
2017-09-05 08:50:51 +00:00
|
|
|
testCompile project(':node-driver')
|
2016-06-22 13:02:50 +00:00
|
|
|
}
|