mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
28 lines
683 B
Groovy
28 lines
683 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'idea'
|
|
|
|
sourceSets {
|
|
integrationTest {
|
|
kotlin {
|
|
compileClasspath += main.output + test.output
|
|
runtimeClasspath += main.output + test.output
|
|
srcDir file('src/integration-test/kotlin')
|
|
}
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
integrationTestCompile.extendsFrom testCompile
|
|
integrationTestRuntime.extendsFrom testRuntime
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
compile project(':core')
|
|
compile project(':node-api')
|
|
testCompile project(':test-utils')
|
|
testCompile project(':node-driver')
|
|
|
|
testCompile "junit:junit:$junit_version"
|
|
}
|