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.
19 lines
483 B
Groovy
19 lines
483 B
Groovy
plugins {
|
|
id "corda.kotlin-1.2"
|
|
id "application"
|
|
id "com.github.johnrengelman.shadow"
|
|
}
|
|
|
|
application {
|
|
mainClass.set("net.corda.verifier.Main")
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":core-1.2")
|
|
implementation project(":serialization-1.2")
|
|
implementation "com.github.ben-manes.caffeine:caffeine:$caffeine_version"
|
|
implementation "org.slf4j:jul-to-slf4j:$slf4j_version"
|
|
|
|
runtimeOnly "org.apache.logging.log4j:log4j-slf4j2-impl:$log4j_version"
|
|
}
|