corda/experimental/build.gradle
2016-09-01 11:15:05 +01:00

34 lines
606 B
Groovy

group 'com.r3cev.prototyping'
version '1.0-SNAPSHOT'
apply plugin: 'kotlin'
sourceCompatibility = 1.5
repositories {
mavenLocal()
mavenCentral()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
jcenter()
maven {
url 'https://dl.bintray.com/kotlin/exposed'
}
}
compileKotlin {
kotlinOptions.suppressWarnings = true
}
compileTestKotlin {
kotlinOptions.suppressWarnings = true
}
dependencies {
compile project(':core')
compile project(':contracts')
testCompile 'junit:junit:4.12'
compile project(':test-utils')
}