mirror of
https://github.com/corda/corda.git
synced 2025-03-11 06:54:04 +00:00
* Split out node-api tests that require test-utils/node-driver * Add node-api test artefacts to publication list. * Make test-common a transient dependency - downstream tests assume that it's available. * Switch dependencies to java-library * Fix magic package name for cordapp scanning in test
23 lines
449 B
Groovy
23 lines
449 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
id 'net.corda.plugins.publish-utils'
|
|
id 'net.corda.plugins.api-scanner'
|
|
id 'com.jfrog.artifactory'
|
|
id 'java-library'
|
|
}
|
|
|
|
description 'Core test types and helpers for testing Corda'
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
api project(':test-common')
|
|
api "org.jetbrains.kotlin:kotlin-test"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-core-test-utils'
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
} |