kobalt icon indicating copy to clipboard operation
kobalt copied to clipboard

Expand dependent project support to tests

Open cbeust opened this issue 9 years ago • 0 comments

Currently, dependent projects are defined as

val p = project(dependent1, dependent2) {

Need to make this more universal and extend it to test dependencies:

val p = project {
  dependsOn(dependent1, dependent2)
  dependsOnTest(testDependentProject)

The latter will add testDependentProject's dependencies to the test classpath only.

cbeust avatar Jul 09 '16 00:07 cbeust