Skip to content

Commit

Permalink
Bumped up versions for ScalaTest 3.2.17 and JUnit 5.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Sep 7, 2023
1 parent 889e955 commit 9586888
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ 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:

```
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-5-9_2.13</artifactId>
<version>3.2.16.0</version>
<artifactId>junit-5-10_2.13</artifactId>
<version>3.2.17.0</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -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 {
Expand All @@ -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 {
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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"))

Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 9586888

Please sign in to comment.