Skip to content

Commit 88e56fb

Browse files
committed
Use nativeVersion for Scala Native
1 parent e14c125 commit 88e56fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ lazy val root = project
5353
lazy val junit = libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test
5454

5555
lazy val scala211 = "2.11.12"
56-
lazy val scala212 = "2.12.12"
56+
lazy val scala212 = "2.12.13"
5757
lazy val scala213 = "2.13.4"
5858
lazy val scala30 = "3.0.0-M3"
5959

@@ -100,9 +100,9 @@ lazy val compat = MultiScalaCrossProject(JSPlatform, JVMPlatform, NativePlatform
100100
.nativeSettings(
101101
nativeLinkStubs := true,
102102
addCompilerPlugin(
103-
"org.scala-native" % "junit-plugin" % "0.4.0" cross CrossVersion.full
103+
"org.scala-native" % "junit-plugin" % nativeVersion cross CrossVersion.full
104104
),
105-
libraryDependencies += "org.scala-native" %%% "junit-runtime" % "0.4.0",
105+
libraryDependencies += "org.scala-native" %%% "junit-runtime" % nativeVersion,
106106
Test / fork := false // Scala Native cannot run forked tests
107107
)
108108
)

0 commit comments

Comments
 (0)