mirror of
https://github.com/corda/corda.git
synced 2025-02-14 06:32:36 +00:00
parent
d75da5363a
commit
63a3671b17
@ -326,7 +326,8 @@ bintrayConfig {
|
|||||||
'corda-confidential-identities',
|
'corda-confidential-identities',
|
||||||
'corda-network-builder',
|
'corda-network-builder',
|
||||||
'corda-blob-inspector',
|
'corda-blob-inspector',
|
||||||
'corda-network-bootstrapper'
|
'corda-network-bootstrapper',
|
||||||
|
'corda-tools-explorer'
|
||||||
]
|
]
|
||||||
license {
|
license {
|
||||||
name = 'Apache-2.0'
|
name = 'Apache-2.0'
|
||||||
|
@ -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()
|
||||||
@ -49,3 +55,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…
x
Reference in New Issue
Block a user