mirror of
https://github.com/corda/corda.git
synced 2025-02-11 05:12:09 +00:00
47 lines
1.2 KiB
Groovy
47 lines
1.2 KiB
Groovy
apply plugin: 'us.kirchmeier.capsule'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
description 'Network bootstrapper'
|
|
|
|
configurations {
|
|
runtimeArtifacts
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.slf4j:slf4j-nop:$slf4j_version"
|
|
}
|
|
|
|
task buildBootstrapperJar(type: FatCapsule, dependsOn: project(':node-api').compileJava) {
|
|
applicationClass 'net.corda.nodeapi.internal.network.NetworkBootstrapper'
|
|
archiveName "network-bootstrapper.jar"
|
|
capsuleManifest {
|
|
applicationVersion = corda_release_version
|
|
systemProperties['visualvm.display.name'] = 'Network Bootstrapper'
|
|
minJavaVersion = '1.8.0'
|
|
jvmArgs = ['-XX:+UseG1GC']
|
|
}
|
|
from(project(':node:capsule').tasks['buildCordaJAR']) {
|
|
rename 'corda-(.*)', 'corda.jar'
|
|
}
|
|
applicationSource = files(
|
|
project(':node-api').configurations.runtime,
|
|
project(':node-api').jar
|
|
)
|
|
}
|
|
|
|
artifacts {
|
|
runtimeArtifacts buildBootstrapperJar
|
|
}
|
|
|
|
def artifact = file(buildBootstrapperJar.archivePath)
|
|
def bootstrapperArtifact = artifacts.add("publish", artifact) {
|
|
type "jar"
|
|
classifier "executable"
|
|
builtBy(buildBootstrapperJar)
|
|
}
|
|
|
|
publish {
|
|
name 'corda-network-bootstrapper'
|
|
disableDefaultJar = true
|
|
} |