Skip to content

Commit 775fcac

Browse files
authored
Correct build dependencies. (#325)
1 parent 6c43b1d commit 775fcac

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

build.sbt

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sbtcrossproject.CrossProject
22
import sbtcrossproject.CrossType
33

4-
def localSnapshotVersion = "1.4.5-SNAPSHOT"
4+
def localSnapshotVersion = "1.4.6-SNAPSHOT"
55
def isCI = System.getenv("CI") != null
66

77
val scalatestVersion = "3.2.8"
@@ -68,18 +68,14 @@ lazy val runtime = CrossProject(
6868
.settings(
6969
name := "scalac-scoverage-runtime",
7070
crossTarget := target.value / s"scala-${scalaVersion.value}",
71-
crossVersion := CrossVersion.full,
7271
libraryDependencies ++= Seq(
73-
"org.scalatest" %%% "scalatest" % scalatestVersion % Test,
74-
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Compile
72+
"org.scalatest" %%% "scalatest" % scalatestVersion % Test
7573
)
7674
)
7775
.jvmSettings(
7876
Test / fork := true
7977
)
8078
.jsSettings(
81-
crossVersion := CrossVersion
82-
.fullWith("sjs" + scalaJSVersion.take(1) + "_", ""),
8379
scalaJSStage := FastOptStage
8480
)
8581

@@ -96,7 +92,7 @@ lazy val plugin =
9692
libraryDependencies ++= Seq(
9793
"org.scala-lang.modules" %% "scala-xml" % "1.3.0",
9894
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
99-
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Compile
95+
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Provided
10096
)
10197
)
10298
.settings(

0 commit comments

Comments
 (0)