mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
99dd2c5936
* Make blobinspector use picocli base class * Updated Documentation * Update and harmonise documentation * Give the table a bit more padding to help with merge conflicts * Correct capitalisation of short options * Some grammar changes
37 lines
973 B
Groovy
37 lines
973 B
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(':tools:cliutils')
|
|
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')) {
|
|
exclude module: 'node-api'
|
|
exclude module: 'finance'
|
|
}
|
|
testCompile project(':test-utils')
|
|
}
|
|
|
|
jar {
|
|
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
|
|
exclude "META-INF/*.SF"
|
|
exclude "META-INF/*.DSA"
|
|
exclude "META-INF/*.RSA"
|
|
}
|
|
baseName = "blob-inspector"
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'net.corda.blobinspector.BlobInspectorKt'
|
|
)
|
|
}
|
|
}
|
|
|
|
publish {
|
|
name 'corda-tools-blob-inspector'
|
|
}
|