mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
30 lines
640 B
Groovy
30 lines
640 B
Groovy
apply plugin: 'kotlin'
|
|
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-slf4j-impl:$log4j_version"
|
|
|
|
testImplementation "junit:junit:$junit_version"
|
|
}
|
|
|
|
jar {
|
|
enabled = false
|
|
classifier = 'ignore'
|
|
}
|
|
|
|
shadowJar {
|
|
baseName = "corda-tools-error-utils"
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': "net.corda.errorUtilities.ErrorToolKt"
|
|
)
|
|
}
|
|
}
|
|
|
|
artifacts {
|
|
archives shadowJar
|
|
}
|