[ad_1]
I’m wondering how do I change the following which gives me a warning for deprecation for the
in
command?
lazy val enablingCoverageSettings = Seq(coverageEnabled in(Test, compile) := true, coverageEnabled in(Compile, compile) := false)
I guess I have to use the syntax
This
but how do I change it in my case here?
[ad_2]