mirror of
https://github.com/corda/corda.git
synced 2025-01-14 16:59:52 +00:00
25 lines
683 B
Groovy
25 lines
683 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
apply plugin: 'net.corda.plugins.publish-utils'
|
||
|
apply plugin: 'com.jfrog.artifactory'
|
||
|
|
||
|
dependencies {
|
||
|
compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk8", version: kotlin_version
|
||
|
compile group: "org.jetbrains.kotlin", name: "kotlin-reflect", version: kotlin_version
|
||
|
|
||
|
compile group: "com.typesafe", name: "config", version: typesafe_config_version
|
||
|
|
||
|
compile project(":core")
|
||
|
|
||
|
// test dependencies
|
||
|
testImplementation "junit:junit:$junit_version"
|
||
|
testCompile group: "org.jetbrains.kotlin", name: "kotlin-test", version: kotlin_version
|
||
|
}
|
||
|
|
||
|
|
||
|
jar {
|
||
|
baseName 'corda-common-mock-enclave'
|
||
|
}
|
||
|
|
||
|
publish {
|
||
|
name jar.baseName
|
||
|
}
|