mirror of
https://github.com/corda/corda.git
synced 2024-12-23 14:52:29 +00:00
0b63157a4b
* ENT-3422 Add JUnit 5 dependencies to all projects * Remove explicit junit 4 imports where not needed * Minor PR fixes * Limit import scope
30 lines
1.0 KiB
Groovy
30 lines
1.0 KiB
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")
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
|
|
testCompile "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
|
|
|
testCompile group: "org.jetbrains.kotlin", name: "kotlin-test", version: kotlin_version
|
|
testCompile group: "org.assertj", name: "assertj-core", version: assertj_version
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-common-configuration-parsing'
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
} |