corda/experimental/build.gradle

26 lines
404 B
Groovy
Raw Normal View History

2016-06-22 13:02:50 +00:00
group 'com.r3cev.prototyping'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.5
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions.suppressWarnings = true
}
compileTestKotlin {
kotlinOptions.suppressWarnings = true
}
2016-06-22 13:02:50 +00:00
dependencies {
compile project(':core')
compile project(':contracts')
testCompile 'junit:junit:4.12'
}