kobalt
kobalt copied to clipboard
Expand dependent project support to tests
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.