mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
25 lines
383 B
Groovy
25 lines
383 B
Groovy
group 'com.r3cev.prototyping'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
sourceCompatibility = 1.5
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.suppressWarnings = true
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.suppressWarnings = true
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile project(':contracts')
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
}
|