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 b343344 commit 6d09e93
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 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.

**Usage**

To use it for ScalaTest 3.2.18 and JUnit 4.13:
To use it for ScalaTest 3.2.19 and JUnit 4.13:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.18.0" % "test"
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.19.0" % "test"
```

Maven:

```
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-4-13_2.13</artifactId>
<version>3.2.18.0</version>
<artifactId>junit-4-13_3</artifactId>
<version>3.2.19.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
20 changes: 10 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "junit-4.13"

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.17",
"2.13.12",
"3.3.1"
"2.12.19",
"2.13.13",
"3.3.3"
)

/** Add src/main/scala-{2|3} to Compile / unmanagedSourceDirectories */
Expand All @@ -45,12 +45,12 @@ Compile / unmanagedSourceDirectories ++= {
}

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-core" % "3.2.18",
"org.scalatest" %% "scalatest-core" % "3.2.19",
"junit" % "junit" % "4.13.2",
"org.scalatest" %% "scalatest-wordspec" % "3.2.18" % "test",
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.18" % "test"
"org.scalatest" %% "scalatest-wordspec" % "3.2.19" % "test",
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % "test"
)

import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}
Expand Down

0 comments on commit 6d09e93

Please sign in to comment.