corda/tools/blobinspector/build.gradle
Clinton 861a76e380 CORDA-2037 - Add network bootstrapper and other tools to published binary list (#4003)
* Publish tools to Artifactory: Blob Inspector, Network Bootstrapper (#3321)

* Added missing plugin to enable publishing of artifact to Artifactory.

* Remove references to experimental blobinspector

* Remove disableDefaultJar for default jar.

* Add additional artifacts to be published.

* Fix bootstrapper publication problem. (#3370)

* Fixed double JAR publishing problem with network bootstrapper. (#3354)

Fixed merge issue
2018-10-02 16:00:11 +01:00

36 lines
1.0 KiB
Groovy

apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'net.corda.plugins.publish-utils'
apply plugin: 'com.jfrog.artifactory'
dependencies {
compile project(':client:jackson')
compile project(':node-api')
compile 'info.picocli:picocli:3.0.0'
compile "org.slf4j:jul-to-slf4j:$slf4j_version"
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
testCompile project(':test-utils')
testCompile "junit:junit:$junit_version"
}
jar {
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
archiveName = "blob-inspector-${corda_release_version}.jar"
manifest {
attributes(
'Automatic-Module-Name': 'net.corda.blobinspector',
'Main-Class': 'net.corda.blobinspector.MainKt'
)
}
}
publish {
name 'corda-tools-blob-inspector'
}