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
32 lines
1.0 KiB
Groovy
32 lines
1.0 KiB
Groovy
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'net.corda.plugins.api-scanner'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile project(':node-api')
|
|
compile project(':tools:cliutils')
|
|
compile project(":common-logging")
|
|
|
|
// Unit testing helpers.
|
|
compile "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}"
|
|
|
|
compile 'org.hamcrest:hamcrest-library:1.3'
|
|
compile "com.nhaarman:mockito-kotlin:$mockito_kotlin_version"
|
|
compile "org.mockito:mockito-core:$mockito_version"
|
|
compile "org.assertj:assertj-core:$assertj_version"
|
|
compile "com.natpryce:hamkrest:$hamkrest_version"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-test-common'
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
}
|