corda/contracts/build.gradle

30 lines
503 B
Groovy
Raw Normal View History

apply plugin: 'kotlin'
apply plugin: CanonicalizerPlugin
repositories {
mavenLocal()
mavenCentral()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
2016-08-31 14:20:44 +00:00
jcenter()
maven {
url 'https://dl.bintray.com/kotlin/exposed'
}
}
dependencies {
compile project(':core')
testCompile project(':test-utils')
testCompile 'junit:junit:4.12'
}
sourceSets {
test {
resources {
srcDir "../config/test"
}
}
}