mirror of
https://github.com/corda/corda.git
synced 2025-02-02 09:18:13 +00:00
27 lines
413 B
Groovy
27 lines
413 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: CanonicalizerPlugin
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
mavenCentral()
|
|
jcenter()
|
|
maven {
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
sourceSets {
|
|
test {
|
|
resources {
|
|
srcDir "../config/test"
|
|
}
|
|
}
|
|
}
|