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-09-14 15:37:58 +00:00
|
|
|
compile project(':tools:cliutils')
|
2019-04-09 19:14:37 +00:00
|
|
|
compile project(":common-logging")
|
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'
|
2018-12-19 18:02:51 +00:00
|
|
|
exclude module: 'contracts'
|
2018-07-11 13:50:51 +00:00
|
|
|
}
|
2018-05-24 17:26:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
|
|
|
|
exclude "META-INF/*.SF"
|
|
|
|
exclude "META-INF/*.DSA"
|
|
|
|
exclude "META-INF/*.RSA"
|
|
|
|
}
|
2018-09-14 15:37:58 +00:00
|
|
|
baseName = "blob-inspector"
|
2018-05-24 17:26:55 +00:00
|
|
|
manifest {
|
|
|
|
attributes(
|
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
|
|
|
}
|