1
1
import sbtcrossproject .CrossProject
2
2
import sbtcrossproject .CrossType
3
3
4
- def localSnapshotVersion = " 1.4.5 -SNAPSHOT"
4
+ def localSnapshotVersion = " 1.4.6 -SNAPSHOT"
5
5
def isCI = System .getenv(" CI" ) != null
6
6
7
7
val scalatestVersion = " 3.2.8"
@@ -68,18 +68,14 @@ lazy val runtime = CrossProject(
68
68
.settings(
69
69
name := " scalac-scoverage-runtime" ,
70
70
crossTarget := target.value / s " scala- ${scalaVersion.value}" ,
71
- crossVersion := CrossVersion .full,
72
71
libraryDependencies ++= Seq (
73
- " org.scalatest" %%% " scalatest" % scalatestVersion % Test ,
74
- " org.scala-lang" % " scala-compiler" % scalaVersion.value % Compile
72
+ " org.scalatest" %%% " scalatest" % scalatestVersion % Test
75
73
)
76
74
)
77
75
.jvmSettings(
78
76
Test / fork := true
79
77
)
80
78
.jsSettings(
81
- crossVersion := CrossVersion
82
- .fullWith(" sjs" + scalaJSVersion.take(1 ) + " _" , " " ),
83
79
scalaJSStage := FastOptStage
84
80
)
85
81
@@ -96,7 +92,7 @@ lazy val plugin =
96
92
libraryDependencies ++= Seq (
97
93
" org.scala-lang.modules" %% " scala-xml" % " 1.3.0" ,
98
94
" org.scalatest" %% " scalatest" % scalatestVersion % Test ,
99
- " org.scala-lang" % " scala-compiler" % scalaVersion.value % Compile
95
+ " org.scala-lang" % " scala-compiler" % scalaVersion.value % Provided
100
96
)
101
97
)
102
98
.settings(
0 commit comments