From 95868889958cedad334bfed3744617cc21b112f9 Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Thu, 7 Sep 2023 11:47:58 +0800 Subject: [PATCH] Bumped up versions for ScalaTest 3.2.17 and JUnit 5.10. --- README.md | 24 ++++++++++++------------ build.sbt | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index bd4205a..5cc4dfb 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.16 and JUnit 5.9: +To use it for ScalaTest 3.2.17 and JUnit 5.10: SBT: ``` -libraryDependencies += "org.scalatestplus" %% "junit-5-9" % "3.2.16.0" % Test +libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.17.0" % Test ``` Maven: @@ -16,8 +16,8 @@ Maven: ``` org.scalatestplus - junit-5-9_2.13 - 3.2.16.0 + junit-5-10_2.13 + 3.2.17.0 test ``` @@ -28,10 +28,10 @@ Gradle: dependencies { implementation "org.scala-lang:scala-library:2.13.11" - testImplementation "org.scalatest:scalatest_2.13:3.2.16" - testImplementation "org.junit.platform:junit-platform-launcher:1.9.1" - testRuntimeOnly "org.junit.platform:junit-platform-engine:1.9.1" - testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.16.0" + testImplementation "org.scalatest:scalatest_2.13:3.2.17" + testImplementation "org.junit.platform:junit-platform-launcher:1.10.0" + testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.0" + testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.17.0" } test { @@ -50,10 +50,10 @@ Gradle (Kotlin): dependencies { implementation("org.scala-lang:scala-library:2.13.11") - testImplementation("org.scalatest:scalatest_2.13:3.2.16") - testRuntimeOnly("org.junit.platform:junit-platform-engine:1.9.1") - testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.1") - testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.16.0") + testImplementation("org.scalatest:scalatest_2.13:3.2.17") + testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.0") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.0") + testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.17.0") } tasks { diff --git a/build.sbt b/build.sbt index eaadb70..f52e63d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,11 +1,11 @@ import java.io.PrintWriter import scala.io.Source -name := "junit-5.9" +name := "junit-5.10" organization := "org.scalatestplus" -version := "3.2.16.0" +version := "3.2.17.0" homepage := Some(url("https://github.com/scalatest/scalatestplus-junit")) @@ -47,9 +47,9 @@ Compile / unmanagedSourceDirectories ++= { } } -val scalatestVersion = "3.2.16" -val junitVersion = "5.9.3" -val junitEngineVersion = "1.9.3" +val scalatestVersion = "3.2.17" +val junitVersion = "5.10.0" +val junitEngineVersion = "1.10.0" libraryDependencies ++= Seq( "org.scalatest" %% "scalatest-core" % scalatestVersion,