2018-06-23 10:36:10 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
2018-06-08 13:02:57 +00:00
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
|
|
apply plugin: 'com.jfrog.artifactory'
|
2017-12-07 14:48:31 +00:00
|
|
|
|
|
|
|
description 'Network bootstrapper'
|
|
|
|
|
2017-12-23 11:22:31 +00:00
|
|
|
dependencies {
|
2018-06-23 10:36:10 +00:00
|
|
|
compile project(':node-api')
|
|
|
|
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"
|
2017-12-23 11:22:31 +00:00
|
|
|
}
|
|
|
|
|
2018-06-23 10:36:10 +00:00
|
|
|
jar {
|
|
|
|
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
|
|
|
|
exclude "META-INF/*.SF"
|
|
|
|
exclude "META-INF/*.DSA"
|
|
|
|
exclude "META-INF/*.RSA"
|
2017-12-07 14:48:31 +00:00
|
|
|
}
|
2017-12-23 11:22:31 +00:00
|
|
|
from(project(':node:capsule').tasks['buildCordaJAR']) {
|
|
|
|
rename 'corda-(.*)', 'corda.jar'
|
|
|
|
}
|
2018-06-23 10:36:10 +00:00
|
|
|
archiveName = "network-bootstrapper-${corda_release_version}.jar"
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Automatic-Module-Name': 'net.corda.bootstrapper',
|
|
|
|
'Main-Class': 'net.corda.bootstrapper.MainKt'
|
|
|
|
)
|
2018-06-08 13:02:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
publish {
|
2018-06-12 17:08:31 +00:00
|
|
|
name 'corda-tools-network-bootstrapper'
|
2017-12-07 14:48:31 +00:00
|
|
|
}
|