Skip to content

Commit

Permalink
Updated to use scalatest version 3.2.14, and release version to 3.2.1…
Browse files Browse the repository at this point in the history
…4.0.
  • Loading branch information
cheeseng committed Sep 25, 2022
1 parent 16fd86f commit 48eb96b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ ScalaTest + JUnit provides integration support between ScalaTest and JUnit.

**Usage**

To use it for ScalaTest 3.2.13 and JUnit 4.13:
To use it for ScalaTest 3.2.14 and JUnit 4.13:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.13.0" % "test"
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.14.0" % "test"
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-4-13_2.13</artifactId>
<version>3.2.13.0</version>
<version>3.2.14.0</version>
<scope>test</scope>
</dependency>
```
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-4.13"

organization := "org.scalatestplus"

version := "3.2.13.0"
version := "3.2.14.0"

homepage := Some(url("https://github.com/scalatest/scalatestplus-junit"))

Expand Down Expand Up @@ -46,12 +46,12 @@ Compile / unmanagedSourceDirectories ++= {
}

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

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

0 comments on commit 48eb96b

Please sign in to comment.