Paulius Ruminas
04/09/2019, 6:21 AMtask jarTest(type: Jar) {
from sourceSets.test.output
classifier = 'test'
}
configurations {
testOutput
}
artifacts {
testOutput jarTest
}
ModuleB build.gradle:
testImplementation project(path: ':ModuleA', configuration: 'testOutput')
tapchicoma
04/09/2019, 8:26 AMPaulius Ruminas
04/11/2019, 8:53 AMtapchicoma
04/11/2019, 9:01 AMtestImplementation project(":shared-test")