From a14185b440723d79b3c8366782a4fd45e0668aba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Doeraene?= Date: Fri, 31 May 2024 17:19:48 +0200 Subject: [PATCH] Use ScalaNativeJUnitPlugin in the build. Instead of doing things manually. --- build.sbt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index ae4714d..7155c32 100644 --- a/build.sbt +++ b/build.sbt @@ -74,9 +74,4 @@ lazy val `portable-scala-reflect` = crossProject(JSPlatform, JVMPlatform, Native libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test", ) .jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin)) - .nativeSettings( - libraryDependencies += - "org.scala-native" %%% "junit-runtime" % "0.4.0" % "test", - addCompilerPlugin( - "org.scala-native" % "junit-plugin" % "0.4.0" cross CrossVersion.full), - ) + .nativeConfigure(_.enablePlugins(ScalaNativeJUnitPlugin))