Skip to content

Commit 853f65a

Browse files
committed
Updated to use ScalaTest 3.2.18 and TestNG 7.9.
1 parent 3ab4981 commit 853f65a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ ScalaTest + TestNG provides integration support between ScalaTest and TestNG.
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.17 and TestNG 7.5.x:
6+
To use it for ScalaTest 3.2.18 and TestNG 7.9.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "testng-7-5" % "3.2.17.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "testng-7-9" % "3.2.18.0" % "test"
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>testng-7-5_2.13</artifactId>
20-
<version>3.2.17.0</version>
19+
<artifactId>testng-7-9_2.13</artifactId>
20+
<version>3.2.18.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import java.io.PrintWriter
22
import scala.io.Source
33

4-
name := "testng-7.6"
4+
name := "testng-7.9"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.3.0.0-alpha.1"
8+
version := "3.2.18.0"
99

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

@@ -31,10 +31,10 @@ scalaVersion := "2.13.12"
3131
crossScalaVersions := List("2.11.12", "2.12.18", "2.13.12", "3.3.1")
3232

3333
libraryDependencies ++= Seq(
34-
"org.scalatest" %% "scalatest-core" % "3.3.0-alpha.1",
35-
"org.testng" % "testng" % "7.6.1",
34+
"org.scalatest" %% "scalatest-core" % "3.2.18",
35+
"org.testng" % "testng" % "7.9.0",
3636
"commons-io" % "commons-io" % "1.3.2" % "test",
37-
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-alpha.1" % "test"
37+
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test"
3838
)
3939

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

0 commit comments

Comments
 (0)