11import sbtcrossproject .CrossProject
22import sbtcrossproject .CrossType
33
4- def localSnapshotVersion = " 1.4.5 -SNAPSHOT"
4+ def localSnapshotVersion = " 1.4.6 -SNAPSHOT"
55def isCI = System .getenv(" CI" ) != null
66
77val 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