mirror of
https://github.com/corda/corda.git
synced 2025-01-04 20:24:17 +00:00
19 lines
380 B
Groovy
19 lines
380 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
|
||
|
apply plugin: 'net.corda.plugins.publish-utils'
|
||
|
apply plugin: 'com.jfrog.artifactory'
|
||
|
|
||
|
dependencies {
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||
|
|
||
|
testCompile project(":test-utils")
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
baseName 'common-validation'
|
||
|
}
|
||
|
|
||
|
publish {
|
||
|
name jar.baseName
|
||
|
}
|