Skip to content

Commit d070ef0

Browse files
committed
Correct fork options for SBT 1.x
1 parent aee9d85 commit d070ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/org/scalasbt/jacoco/BaseJacocoPlugin.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private[jacoco] abstract class BaseJacocoPlugin extends AutoPlugin with JacocoKe
6464
jacocoExcludes := Seq(),
6565
jacocoInstrumentedDirectory := jacocoDirectory.value / "instrumented-classes",
6666
jacocoDataFile := jacocoDataDirectory.value / "jacoco.exec",
67-
javaOptions in (srcConfig, test) ++= {
67+
javaOptions in srcConfig ++= {
6868
val dest = jacocoDataFile.value
6969
if (fork.value) {
7070
Seq(

0 commit comments

Comments
 (0)