mirror of
https://github.com/corda/corda.git
synced 2025-02-05 02:29:20 +00:00
CORDA-2097 - Add missing Node Explorer artefact publication (#4066)
This commit is contained in:
parent
b03e262fdf
commit
cd9b682943
@ -324,6 +324,7 @@ bintrayConfig {
|
||||
'corda-shell',
|
||||
'corda-serialization',
|
||||
'corda-tools-blob-inspector',
|
||||
'corda-tools-explorer',
|
||||
'corda-tools-network-bootstrapper'
|
||||
]
|
||||
license {
|
||||
|
@ -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'
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user