From ced778b27c707cf867712d17469abdb8ddc91f17 Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Tue, 25 Jun 2024 09:27:10 +0800 Subject: [PATCH] Updated to ScalaTest 3.2.19. --- README.md | 28 ++++++++++++++-------------- build.sbt | 12 ++++++------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 6ed1eec..3fcdd4b 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,12 @@ ScalaTest + JUnit provides integration support between ScalaTest and JUnit 5. **Usage** -To use it for ScalaTest 3.2.18 and JUnit 5.10: +To use it for ScalaTest 3.2.19 and JUnit 5.10: SBT: ``` -libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.18.0" % Test +libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.19.0" % Test ``` Maven: @@ -16,8 +16,8 @@ Maven: ``` org.scalatestplus - junit-5-10_2.13 - 3.2.18.0 + junit-5-10_3 + 3.2.19.0 test ``` @@ -26,12 +26,12 @@ Gradle: ``` dependencies { - implementation "org.scala-lang:scala-library:2.13.12" + implementation "org.scala-lang:scala3-library:3.3.3" - testImplementation "org.scalatest:scalatest_2.13:3.2.18" - testImplementation "org.junit.platform:junit-platform-launcher:1.10.1" - testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.1" - testRuntimeOnly "org.scalatestplus:junit-5-10_2.13:3.2.18.0" + testImplementation "org.scalatest:scalatest_3:3.2.19" + testImplementation "org.junit.platform:junit-platform-launcher:1.10.2" + testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.2" + testRuntimeOnly "org.scalatestplus:junit-5-10_3:3.2.19.0" } test { @@ -48,12 +48,12 @@ Gradle (Kotlin): ``` dependencies { - implementation("org.scala-lang:scala-library:2.13.12") + implementation("org.scala-lang:scala3-library:3.3.3") - testImplementation("org.scalatest:scalatest_2.13:3.2.18") - testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.1") - testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.1") - testRuntimeOnly("org.scalatestplus:junit-5-10_2.13:3.2.18.0") + testImplementation("org.scalatest:scalatest_3:3.2.19") + testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.2") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2") + testRuntimeOnly("org.scalatestplus:junit-5-10_3:3.2.19.0") } tasks { diff --git a/build.sbt b/build.sbt index 075d7b9..18754bc 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ name := "junit-5.10" organization := "org.scalatestplus" -version := "3.2.18.0" +version := "3.2.19.0" homepage := Some(url("https://github.com/scalatest/scalatestplus-junit")) @@ -26,13 +26,13 @@ developers := List( ) ) -scalaVersion := "2.13.12" +scalaVersion := "2.13.13" crossScalaVersions := List( "2.11.12", - "2.12.18", - "2.13.12", - "3.3.1" + "2.12.19", + "2.13.13", + "3.3.3" ) scalacOptions ++= Seq("-target:jvm-1.8") @@ -46,7 +46,7 @@ Compile / unmanagedSourceDirectories ++= { } } -val scalatestVersion = "3.2.18" +val scalatestVersion = "3.2.19" val junitVersion = "5.10.2" val junitEngineVersion = "1.10.2"