mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
CORDA-1674 - Publish Node Explorer artefact (#3437)
This commit is contained in:
parent
14810f25de
commit
1d95ffba3a
@ -356,6 +356,7 @@ bintrayConfig {
|
||||
'corda-serialization',
|
||||
'corda-serialization-deterministic',
|
||||
'corda-tools-blob-inspector',
|
||||
'corda-tools-explorer',
|
||||
'corda-tools-network-bootstrapper'
|
||||
]
|
||||
license {
|
||||
|
@ -2,9 +2,15 @@
|
||||
* 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'
|
||||
|
||||
configurations {
|
||||
runtimeArtifacts.extendsFrom runtime
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
@ -47,3 +53,19 @@ task buildExplorerJAR(type: FatCapsule, dependsOn: project(':tools:explorer').co
|
||||
}
|
||||
|
||||
build.dependsOn buildExplorerJAR
|
||||
|
||||
artifacts {
|
||||
runtimeArtifacts buildExplorerJAR
|
||||
publish buildExplorerJAR {
|
||||
classifier ""
|
||||
}
|
||||
}
|
||||
|
||||
jar {
|
||||
classifier "ignore"
|
||||
}
|
||||
|
||||
publish {
|
||||
disableDefaultJar = true
|
||||
name 'corda-tools-explorer'
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user