How do I tell sbt coverage
command to not compile and download coverage dependencies every time when the compiled code and dependencies are already there in place.
What do I mean by "the compiled code and dependencies are already there in place"?
I mean the compiled code is already there in the
target
directory for both test and non-test classes and the dependencies are cached in the.ivy2/cache
directory.
I see that sbt coverage
is always compiling and coverage downloading the dependencies... How do I fix my command?