mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
bcfadfeebf
* Add shell extensions to CLI utils class and move into its own module * Fix issue with completion script generation and slight refactor * Fix autocompletion for logging level * Delete uneeded comment * More tidying up * Make run function final * Fixed an issue with the program being run twice. * Address review comments
38 lines
1.1 KiB
Groovy
38 lines
1.1 KiB
Groovy
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
description 'Network bootstrapper'
|
|
|
|
dependencies {
|
|
compile project(':node-api')
|
|
compile project(':tools:cliutils')
|
|
compile "info.picocli:picocli:$picocli_version"
|
|
compile "org.slf4j:jul-to-slf4j:$slf4j_version"
|
|
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
|
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
}
|
|
|
|
jar {
|
|
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
|
|
exclude "META-INF/*.SF"
|
|
exclude "META-INF/*.DSA"
|
|
exclude "META-INF/*.RSA"
|
|
}
|
|
from(project(':node:capsule').tasks['buildCordaJAR']) {
|
|
rename 'corda-(.*)', 'corda.jar'
|
|
}
|
|
archiveName = "network-bootstrapper-${corda_release_version}.jar"
|
|
manifest {
|
|
attributes(
|
|
'Automatic-Module-Name': 'net.corda.bootstrapper',
|
|
'Main-Class': 'net.corda.bootstrapper.MainKt'
|
|
)
|
|
}
|
|
}
|
|
|
|
publish {
|
|
name 'corda-tools-network-bootstrapper'
|
|
}
|