2018-08-16 14:44:40 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
dependencies {
|
2018-10-24 12:58:19 +00:00
|
|
|
compile "info.picocli:picocli:$picocli_version"
|
2018-08-16 14:44:40 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
2019-06-20 15:19:16 +00:00
|
|
|
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jackson_version"
|
|
|
|
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
|
2022-02-24 13:26:37 +00:00
|
|
|
compile "com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_kotlin_version"
|
2019-05-15 15:40:12 +00:00
|
|
|
|
|
|
|
compile "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
|
|
compile "junit:junit:${junit_version}"
|
|
|
|
|
2019-05-20 10:57:56 +00:00
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
2019-05-15 15:40:12 +00:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
2018-08-16 14:44:40 +00:00
|
|
|
}
|
2020-03-05 17:39:55 +00:00
|
|
|
|
|
|
|
tasks.named('jar', Jar) {
|
|
|
|
manifest {
|
|
|
|
// This JAR is part of Corda's testing framework.
|
|
|
|
// Driver will not include it as part of an out-of-process node.
|
|
|
|
attributes('Corda-Testing': true)
|
2018-08-16 14:44:40 +00:00
|
|
|
}
|
|
|
|
}
|