mirror of
https://github.com/corda/corda.git
synced 2025-02-19 08:57:28 +00:00
# Conflicts: # .idea/compiler.xml # docs/source/changelog.rst # docs/source/release-notes.rst # node/src/main/kotlin/net/corda/node/internal/cordapp/CordappLoader.kt # tools/bootstrapper/build.gradle
47 lines
1.4 KiB
Groovy
47 lines
1.4 KiB
Groovy
/*
|
|
* R3 Proprietary and Confidential
|
|
*
|
|
* Copyright (c) 2018 R3 Limited. All rights reserved.
|
|
*
|
|
* The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law.
|
|
*
|
|
* Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited.
|
|
*/
|
|
|
|
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 "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'
|
|
}
|