Skip to content

Commit

Permalink
Updated scalatest version to 3.2.16.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed May 12, 2023
1 parent cb27791 commit 0750105
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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 + TestNG provides integration support between ScalaTest and TestNG.

**Usage**

To use it for ScalaTest 3.2.15 and TestNG 7.5.x:
To use it for ScalaTest 3.2.16 and TestNG 7.5.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "testng-7-5" % "3.2.15.0" % "test"
libraryDependencies += "org.scalatestplus" %% "testng-7-5" % "3.2.16.0" % "test"
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>testng-7-5_2.13</artifactId>
<version>3.2.15.0</version>
<version>3.2.16.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "testng-7.5"

organization := "org.scalatestplus"

version := "3.2.15.0"
version := "3.2.16.0"

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

Expand All @@ -31,10 +31,10 @@ scalaVersion := "2.13.10"
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.10", "3.1.3")

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-core" % "3.2.15",
"org.scalatest" %% "scalatest-core" % "3.2.16",
"org.testng" % "testng" % "7.5",
"commons-io" % "commons-io" % "1.3.2" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.2.15" % "test"
"org.scalatest" %% "scalatest-funsuite" % "3.2.16" % "test"
)

Compile / packageDoc / publishArtifact := !scalaBinaryVersion.value.startsWith("3")
Expand Down

0 comments on commit 0750105

Please sign in to comment.