mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
c096dcab3b
* CORDA-3206: Move serialization tests into separate module to break dependency on `node-driver` (and associated transitive dependencies). Required to complete CORDA-2050: Upgrade Corda to Java 11 (compatibility mode) * Keep all serialization tests in same module UNLESS they require access to `node-driver` (and transitive dependencies of). * Move helper object to internal package. * Gradle build file clean-up and additional README. * Addressing CS PR review comments.
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
|
|
}
|