mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
42 lines
1007 B
Groovy
42 lines
1007 B
Groovy
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'us.kirchmeier.capsule'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
description 'Doorman default'
|
|
|
|
version project(':network-management').version
|
|
|
|
configurations {
|
|
runtimeArtifacts.extendsFrom runtime
|
|
}
|
|
|
|
task buildDoormanJAR(type: FatCapsule, dependsOn: ':network-management:jar') {
|
|
applicationClass 'com.r3.corda.networkmanage.doorman.MainKt'
|
|
archiveName "doorman-${version}.jar"
|
|
capsuleManifest {
|
|
applicationVersion = corda_release_version
|
|
systemProperties['visualvm.display.name'] = 'Doorman'
|
|
minJavaVersion = '1.8.0'
|
|
jvmArgs = ['-XX:+UseG1GC']
|
|
}
|
|
applicationSource = files(
|
|
project(':network-management').configurations.runtime,
|
|
project(':network-management').jar
|
|
)
|
|
}
|
|
|
|
artifacts {
|
|
runtimeArtifacts buildDoormanJAR
|
|
publish buildDoormanJAR {
|
|
classifier ""
|
|
}
|
|
}
|
|
|
|
jar {
|
|
classifier "ignore"
|
|
}
|
|
|
|
publish {
|
|
name 'doorman'
|
|
disableDefaultJar = true
|
|
} |