mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
6c4b8fdf23
* ENT-11657: Upgraded artemis. * ENT-11657: Reverted dependencies task leftin. * ENT-11657: Upgraded log4j and slf4j.
39 lines
1.2 KiB
Groovy
39 lines
1.2 KiB
Groovy
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
|
|
description 'NetworkParameters signing tool'
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation project(':node-api')
|
|
implementation project(':serialization')
|
|
implementation project(':tools:cliutils')
|
|
|
|
implementation "org.slf4j:jul-to-slf4j:$slf4j_version"
|
|
implementation "org.apache.logging.log4j:log4j-slf4j2-impl:$log4j_version"
|
|
implementation "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
implementation "com.typesafe:config:$typesafe_config_version"
|
|
implementation "info.picocli:picocli:$picocli_version"
|
|
}
|
|
|
|
configurations.implementation.canBeResolved = true
|
|
|
|
jar {
|
|
from(configurations.implementation.collect { it.isDirectory() ? it : zipTree(it) }) {
|
|
exclude "META-INF/*.SF"
|
|
exclude "META-INF/*.DSA"
|
|
exclude "META-INF/*.RSA"
|
|
}
|
|
archiveBaseName = "netparams"
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'net.corda.netparams.NetParamsKt'
|
|
)
|
|
}
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
}
|
|
|
|
processResources {
|
|
from file("$rootDir/config/dev/log4j2.xml")
|
|
from file("$rootDir/node-api/src/main/resources/certificates/cordadevcakeys.jks")
|
|
}
|