Open
Description
In my build.sbt file I've created a new test config using:
lazy val EndToEndTest = config("e2e") extend(Test)
when running:
sbt clean coverage e2e:test
I get a class not found exception and I can see that e2e.dependencyClasspath does not include scalac-scoverage-plugin and scalac-scoverage-runtime
What's the best way to use this plugin with custom test configs?