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 284c63c commit 3ca0aa3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 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.18 and TestNG 7.10.x:
To use it for ScalaTest 3.2.19 and TestNG 7.10.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "testng-7-10" % "3.2.18.0" % "test"
libraryDependencies += "org.scalatestplus" %% "testng-7-10" % "3.2.19.0" % "test"
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>testng-7-10_3</artifactId>
<version>3.2.18.0</version>
<version>3.2.19.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "testng-7.10"

organization := "org.scalatestplus"

version := "3.2.18.0"
version := "3.2.19.0"

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

Expand All @@ -26,15 +26,15 @@ developers := List(
)
)

scalaVersion := "2.13.12"
scalaVersion := "2.13.13"

crossScalaVersions := List("2.11.12", "2.12.18", "2.13.12", "3.3.1")
crossScalaVersions := List("2.11.12", "2.12.19", "2.13.13", "3.3.3")

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-core" % "3.2.18",
"org.scalatest" %% "scalatest-core" % "3.2.19",
"org.testng" % "testng" % "7.10.2",
"commons-io" % "commons-io" % "1.3.2" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test"
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test"
)

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

0 comments on commit 3ca0aa3

Please sign in to comment.