Peter
06/04/2020, 9:15 PMintegration test
that depends on another module eg service
? iow, in integration test
build.gradle.kts i have implementation(project(":service"))
when building the integration test
module it fails to find the service.jar - looks like there’s a race condition as every time i check the jar did get created right around the same timeDariusz Kuc
06/04/2020, 9:19 PMPeter
06/04/2020, 9:21 PMDariusz Kuc
06/04/2020, 9:28 PMPeter
06/04/2020, 9:34 PM:service
and in my :it-test:integrationTestCompileClasspath
configuration … looks like kotlin kapt plugin is the culprit, the moment i enable that it looks for the service.jar
too for some reasonDariusz Kuc
06/04/2020, 10:06 PM