mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
30 lines
503 B
Groovy
30 lines
503 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: CanonicalizerPlugin
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven {
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
}
|
|
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"
|
|
}
|
|
}
|
|
}
|