Skip to content

Commit

Permalink
Updated to ScalaTest 3.2.19.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Jun 25, 2024
1 parent d48cfca commit ced778b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
28 changes: 14 additions & 14 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.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:

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

Expand All @@ -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")
Expand All @@ -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"

Expand Down

0 comments on commit ced778b

Please sign in to comment.