mirror of
https://github.com/corda/corda.git
synced 2024-12-24 15:16:45 +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',
|
||||||
'corda-serialization-deterministic',
|
'corda-serialization-deterministic',
|
||||||
'corda-tools-blob-inspector',
|
'corda-tools-blob-inspector',
|
||||||
|
'corda-tools-explorer',
|
||||||
'corda-tools-network-bootstrapper'
|
'corda-tools-network-bootstrapper'
|
||||||
]
|
]
|
||||||
license {
|
license {
|
||||||
|
@ -2,9 +2,15 @@
|
|||||||
* This build.gradle exists to package Node Explorer as an executable fat jar.
|
* This build.gradle exists to package Node Explorer as an executable fat jar.
|
||||||
*/
|
*/
|
||||||
apply plugin: 'us.kirchmeier.capsule'
|
apply plugin: 'us.kirchmeier.capsule'
|
||||||
|
apply plugin: 'net.corda.plugins.publish-utils'
|
||||||
|
apply plugin: 'com.jfrog.artifactory'
|
||||||
|
|
||||||
description 'Node Explorer'
|
description 'Node Explorer'
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
runtimeArtifacts.extendsFrom runtime
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -47,3 +53,19 @@ task buildExplorerJAR(type: FatCapsule, dependsOn: project(':tools:explorer').co
|
|||||||
}
|
}
|
||||||
|
|
||||||
build.dependsOn buildExplorerJAR
|
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