mirror of
https://github.com/corda/corda.git
synced 2025-03-23 20:45:23 +00:00
* ENT-3422 Add JUnit 5 dependencies to all projects * Remove explicit junit 4 imports where not needed * Minor PR fixes * Limit import scope
12 lines
554 B
Groovy
12 lines
554 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
|
|
testImplementation "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}"
|
|
} |