mirror of
https://github.com/corda/corda.git
synced 2025-01-18 10:46:38 +00:00
30 lines
696 B
Groovy
30 lines
696 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
|
||
|
configurations {
|
||
|
testData
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testCompile project(':core')
|
||
|
testCompile project(':finance')
|
||
|
testCompile project(':node-driver')
|
||
|
testCompile project(':core-deterministic:testing:common')
|
||
|
|
||
|
testCompile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||
|
testCompile "org.jetbrains.kotlin:kotlin-reflect"
|
||
|
testCompile "junit:junit:$junit_version"
|
||
|
}
|
||
|
|
||
|
jar.enabled = false
|
||
|
|
||
|
test {
|
||
|
filter {
|
||
|
// Running this class is the whole point, so include it explicitly.
|
||
|
includeTestsMatching "net.corda.deterministic.data.GenerateData"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
artifacts {
|
||
|
testData file: file("$buildDir/test-data.jar"), type: 'jar', builtBy: test
|
||
|
}
|