mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
25 lines
969 B
Groovy
25 lines
969 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
|
||
|
// Any serialization tests that require further Corda dependencies (other than `core`) should be added to this module.
|
||
|
description 'Corda serialization tests'
|
||
|
|
||
|
dependencies {
|
||
|
testCompile project(":serialization")
|
||
|
testCompile project(path: ':serialization', configuration: 'testArtifacts')
|
||
|
testCompile project(':node-driver')
|
||
|
|
||
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
||
|
testImplementation "junit:junit:$junit_version"
|
||
|
|
||
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
||
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
||
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
||
|
|
||
|
testCompile "org.assertj:assertj-core:$assertj_version"
|
||
|
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
||
|
}
|
||
|
|
||
|
configurations {
|
||
|
testArtifacts.extendsFrom testRuntimeClasspath
|
||
|
}
|