Matthew Nesbit 9a406839fa
ENT-4494 split nodeapi tests (#6024)
* 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
2020-03-04 17:59:15 +00:00

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
}