mirror of
https://github.com/corda/corda.git
synced 2024-12-27 08:22:35 +00:00
8af7dc977f
* * change corda dependencies to 3.0-NETWORKMAP_SNAPSHOT * packages move fix * address PR issues * * refactorings * cleaned up network management server start up code. * renamed a few classes * segregate doorman and network map config and startup code. * make `config-file` optional, default to ./networkManagement.conf * readme.md and UX changes * added dependency on rpc for the serilization env * move init serilization env to main method to avoid interfering with test * move cert path check to the storage, and remove redundant checks in NodeInfoWebService. * minor fix * some refactoring * fix broken test and added steps to start the network * address PR issues * write root cert to pem file * address PR issues fix bugs in doorman where it try to transit jira ticket to done multiple times * address PR issue * approve request no longer throws exception when approve again, it will simply ignore, test is no longer relevant
42 lines
1010 B
Groovy
42 lines
1010 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_dependency_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
|
|
} |