mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
19 lines
482 B
Groovy
19 lines
482 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-slf4j-impl:$log4j_version"
|
|
}
|