corda/experimental/build.gradle

34 lines
604 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'
sourceCompatibility = 1.5
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()
maven {
url 'https://dl.bintray.com/kotlin/exposed'
}
2016-06-22 13:02:50 +00:00
}
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
testCompile 'junit:junit:4.12'
compile project(':test-utils')
2016-06-22 13:02:50 +00:00
}