mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
b9f7c1a08a
* Tweak JUnit 5 configurations to keep vintage engine off compile classpaths. * Configure Gradle tests to use JUnit 5.
12 lines
432 B
Groovy
12 lines
432 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
|
|
testImplementation "junit:junit:$junit_version"
|
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
|
}
|