corda/tools/error-tool/build.gradle
Adel El-Beik 6c4b8fdf23
ENT-11657: Upgrade artemis. (#7707)
* ENT-11657: Upgraded artemis.

* ENT-11657: Reverted dependencies task leftin.

* ENT-11657: Upgraded log4j and slf4j.
2024-04-03 11:15:00 +01:00

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
}