mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
52 lines
1.1 KiB
Groovy
52 lines
1.1 KiB
Groovy
description 'Corda Shell CLI'
|
|
|
|
apply plugin: 'application'
|
|
// We need to set mainClassName before applying the shadow plugin.
|
|
mainClassName = 'net.corda.tools.shell.StandaloneShellKt'
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
dependencies {
|
|
compile project(':tools:shell')
|
|
compile project(':tools:cliutils')
|
|
compile project(":common-logging")
|
|
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
|
compile "org.slf4j:jul-to-slf4j:$slf4j_version"
|
|
|
|
testCompile(project(':test-utils')) {
|
|
exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
|
|
}
|
|
|
|
testCompile(project(':test-cli'))
|
|
}
|
|
|
|
processResources {
|
|
from file("$rootDir/config/dev/log4j2.xml")
|
|
}
|
|
|
|
shadowJar {
|
|
archiveClassifier = jdkClassifier
|
|
mergeServiceFiles()
|
|
}
|
|
|
|
tasks.register('buildShellCli') {
|
|
dependsOn shadowJar
|
|
}
|
|
|
|
artifacts {
|
|
archives shadowJar
|
|
publish shadowJar
|
|
}
|
|
|
|
jar {
|
|
archiveClassifier = "ignore"
|
|
enabled = false
|
|
}
|
|
|
|
publish {
|
|
disableDefaultJar = true
|
|
name 'corda-tools-shell-cli'
|
|
}
|