mirror of
https://github.com/corda/corda.git
synced 2024-12-28 08:48:57 +00:00
9fc108aa1e
* Cleanup and improvements to the serialisation format of JacksonSupport (needed for CORDA-1238) (#3102) Also deprecated all the public members that shouldn't have leaked into the public API. (cherry picked from commit3bb95c3
) * CORDA-1238: Updated JacksonSupport to support SerializedBytes, CertPath, X509Certificate and the signature classes (#3145) SerializedBytes are first converted to the object it represents before being serialised as a pojo. These changes will be needed to support the the blob inspector when it will output to YAML/JSON. (cherry picked from commitb031e66
) * Cherry picked part of commit824adca
to port over *only* the JackSupport refactoring. * CORDA-1238: Moved the blob inspector out of experimental and wired it to JackonSupport (#3224) 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. (cherry picked from commit4e0378d
) * Added back support for parsing OpaqueBytes as UTF-8 strings in JacksonSupport (#3240) (cherry picked from commitd772bc8
) * Cleaned up blob inspector doc (#3284) (cherry picked from commitb7fbebb
) * Blobinspector: trace level logging with --verbose (#3313) (cherry picked from commit6a2e50b
) * Cherry picked part of commit3046843
to fix issue with --version * Fixes to the api file
30 lines
855 B
Groovy
30 lines
855 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
|
|
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"
|
|
}
|
|
baseName 'blobinspector'
|
|
manifest {
|
|
attributes(
|
|
'Automatic-Module-Name': 'net.corda.blobinspector',
|
|
'Main-Class': 'net.corda.blobinspector.MainKt'
|
|
)
|
|
}
|
|
}
|