I work with multi-project structure in scala. Some of the projects are located outside the root project. There is a simplex connection that connects them and does the work of sbt. Here is a small example of the structure:
some-project
root-folder / some-project → ../some-project
The problem is that scoverage does not work with these projects, which leads to incorrect distribution.
When I run the 'sbt reportCoverage' command, I get this error:
[error] (scalaCommons / *: coverageReport) Source root not found for '/ Users / user1 / dev / root-folder / some-project ...
source
share