mirror of
https://github.com/corda/corda.git
synced 2025-01-02 03:06:45 +00:00
b9f7c1a08a
* Tweak JUnit 5 configurations to keep vintage engine off compile classpaths. * Configure Gradle tests to use JUnit 5.
23 lines
911 B
Groovy
23 lines
911 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compile "info.picocli:picocli:$picocli_version"
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
compile group: "com.fasterxml.jackson.dataformat", name: "jackson-dataformat-yaml", version: "2.9.0"
|
|
compile group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.9.0"
|
|
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.+"
|
|
|
|
compile "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
compile "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}"
|
|
|
|
}
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
languageVersion = "1.2"
|
|
}
|
|
} |