mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
28 lines
948 B
Groovy
28 lines
948 B
Groovy
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'net.corda.plugins.api-scanner'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
implementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
|
|
|
testImplementation "org.assertj:assertj-core:$assertj_version"
|
|
testImplementation "org.slf4j:slf4j-api:$slf4j_version"
|
|
testRuntimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-test-db'
|
|
manifest {
|
|
// This JAR is part of Corda's testing framework.
|
|
// Driver will not include it as part of an out-of-process node.
|
|
attributes('Corda-Testing': true)
|
|
}
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
} |