File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
project/src/main/scala/definitions Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import sbt._
6
6
import sbtcrossproject .CrossPlugin .autoImport ._
7
7
import sbtcrossproject .{CrossProject , JVMPlatform }
8
8
import scommons .sbtplugin .project .CommonModule
9
- import scoverage .ScoverageKeys ._
10
9
11
10
import scalajscrossproject .ScalaJSCrossPlugin .autoImport ._
12
11
@@ -31,10 +30,6 @@ object ApiCore {
31
30
).jvmSettings(
32
31
// Add JVM-specific settings here
33
32
).jsSettings(
34
- // disable scoverage, until the following issue is fixed:
35
- // https://github.com/scoverage/scalac-scoverage-plugin/issues/196
36
- coverageEnabled := false ,
37
-
38
33
// Opt-in @ScalaJSDefined by default
39
34
scalacOptions += " -P:scalajs:sjsDefinedByDefault"
40
35
)
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import common.{Libs, TestLibs}
4
4
import org .scalajs .sbtplugin .ScalaJSPlugin
5
5
import sbt .Keys ._
6
6
import sbt ._
7
+ import scoverage .ScoverageKeys ._
7
8
8
9
object ApiDom extends ApiModule {
9
10
@@ -17,6 +18,10 @@ object ApiDom extends ApiModule {
17
18
.settings(
18
19
description := " Common Scala ApiHttpClient implementation using dom XMLHttpRequest" ,
19
20
21
+ // disable scoverage, until the following issue is fixed:
22
+ // https://github.com/scoverage/scalac-scoverage-plugin/issues/196
23
+ coverageEnabled := false ,
24
+
20
25
// Opt-in @ScalaJSDefined by default
21
26
scalacOptions += " -P:scalajs:sjsDefinedByDefault"
22
27
)
You can’t perform that action at this time.
0 commit comments