CORDA-2097 - Add missing Node Explorer artefact publication (#4066)

This commit is contained in:
Tommy Lillehagen 2018-10-12 16:17:26 +01:00 committed by Katelyn Baker
parent b03e262fdf
commit cd9b682943
2 changed files with 21 additions and 1 deletions

View File

@ -324,6 +324,7 @@ bintrayConfig {
'corda-shell',
'corda-serialization',
'corda-tools-blob-inspector',
'corda-tools-explorer',
'corda-tools-network-bootstrapper'
]
license {

View File

@ -2,6 +2,8 @@
* This build.gradle exists to package Node Explorer as an executable fat jar.
*/
apply plugin: 'us.kirchmeier.capsule'
apply plugin: 'net.corda.plugins.publish-utils'
apply plugin: 'com.jfrog.artifactory'
description 'Node Explorer'
@ -42,4 +44,21 @@ task buildExplorerJAR(type: FatCapsule, dependsOn: project(':tools:explorer').co
}
}
build.dependsOn buildExplorerJAR
assemble.dependsOn buildExplorerJAR
artifacts {
runtimeArtifacts buildExplorerJAR
publish buildExplorerJAR {
classifier ""
}
}
jar {
classifier "ignore"
enabled = false
}
publish {
disableDefaultJar = true
name 'corda-tools-explorer'
}