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.
25 lines
783 B
Groovy
25 lines
783 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(":common-validation")
|
|
|
|
testCompile group: "org.jetbrains.kotlin", name: "kotlin-test", version: kotlin_version
|
|
testCompile group: "junit", name: "junit", version: junit_version
|
|
testCompile group: "org.assertj", name: "assertj-core", version: assertj_version
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-common-configuration-parsing'
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
} |