2018-05-24 17:26:55 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
2018-06-08 13:02:57 +00:00
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
|
|
apply plugin: 'com.jfrog.artifactory'
|
2018-05-24 17:26:55 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':client:jackson')
|
2018-06-23 10:36:10 +00:00
|
|
|
compile "info.picocli:picocli:$picocli_version"
|
2018-06-06 12:19:18 +00:00
|
|
|
compile "org.slf4j:jul-to-slf4j:$slf4j_version"
|
|
|
|
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
2018-05-24 17:26:55 +00:00
|
|
|
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
|
|
|
2018-07-11 13:50:51 +00:00
|
|
|
testCompile(project(':test-utils')) {
|
|
|
|
exclude module: 'node-api'
|
|
|
|
exclude module: 'finance'
|
|
|
|
}
|
2018-05-24 17:26:55 +00:00
|
|
|
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"
|
|
|
|
}
|
2018-06-12 17:08:31 +00:00
|
|
|
archiveName = "blob-inspector-${corda_release_version}.jar"
|
2018-05-24 17:26:55 +00:00
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Automatic-Module-Name': 'net.corda.blobinspector',
|
2018-07-11 13:50:51 +00:00
|
|
|
'Main-Class': 'net.corda.blobinspector.BlobInspectorKt'
|
2018-05-24 17:26:55 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 13:02:57 +00:00
|
|
|
|
|
|
|
publish {
|
2018-06-12 17:08:31 +00:00
|
|
|
name 'corda-tools-blob-inspector'
|
2018-06-08 13:02:57 +00:00
|
|
|
}
|