mirror of
https://github.com/corda/corda.git
synced 2024-12-23 14:52:29 +00:00
4e0378de9c
The existing output format was not complete and so was deleted to avoid it becoming a tech debt. We can always resurrect it at a later point.
28 lines
748 B
Groovy
28 lines
748 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compile project(':client:jackson')
|
|
compile 'info.picocli:picocli:3.0.0'
|
|
compile "org.slf4j:slf4j-nop:$slf4j_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"
|
|
}
|
|
baseName 'blobinspector'
|
|
manifest {
|
|
attributes(
|
|
'Automatic-Module-Name': 'net.corda.blobinspector',
|
|
'Main-Class': 'net.corda.blobinspector.MainKt'
|
|
)
|
|
}
|
|
}
|