mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
2f833f589c
* Fixed missing entries for common modules in parent `build.gradle` file. * Fixed publication names to match existing convention.
19 lines
386 B
Groovy
19 lines
386 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 'corda-common-validation'
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
} |