2018-10-25 15:45:14 +00:00
|
|
|
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")
|
2019-05-15 15:40:12 +00:00
|
|
|
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
2019-05-20 10:57:56 +00:00
|
|
|
testImplementation "junit:junit:$junit_version"
|
2019-05-15 15:40:12 +00:00
|
|
|
|
2019-05-20 10:57:56 +00:00
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
2019-05-15 15:40:12 +00:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
2018-10-25 15:45:14 +00:00
|
|
|
|
|
|
|
testCompile group: "org.jetbrains.kotlin", name: "kotlin-test", version: kotlin_version
|
|
|
|
testCompile group: "org.assertj", name: "assertj-core", version: assertj_version
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2018-11-12 13:38:35 +00:00
|
|
|
baseName 'corda-common-configuration-parsing'
|
2018-10-25 15:45:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
publish {
|
|
|
|
name jar.baseName
|
2019-05-20 13:26:42 +00:00
|
|
|
}
|