mirror of
https://github.com/corda/corda.git
synced 2024-12-20 13:33:12 +00:00
6c4b8fdf23
* ENT-11657: Upgraded artemis. * ENT-11657: Reverted dependencies task leftin. * ENT-11657: Upgraded log4j and slf4j.
31 lines
740 B
Groovy
31 lines
740 B
Groovy
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
dependencies {
|
|
implementation project(":common-logging")
|
|
implementation project(":tools:cliutils")
|
|
implementation "info.picocli:picocli:$picocli_version"
|
|
implementation "org.apache.logging.log4j:log4j-slf4j2-impl:$log4j_version"
|
|
|
|
testImplementation "junit:junit:$junit_version"
|
|
testImplementation "org.assertj:assertj-core:$assertj_version"
|
|
}
|
|
|
|
jar {
|
|
enabled = false
|
|
archiveClassifier = 'ignore'
|
|
}
|
|
|
|
shadowJar {
|
|
archiveBaseName = "corda-tools-error-utils"
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': "net.corda.errorUtilities.ErrorToolKt"
|
|
)
|
|
}
|
|
}
|
|
|
|
artifacts {
|
|
archives shadowJar
|
|
}
|