Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# ScalaTest + TestNG
ScalaTest + TestNG provides integration support between ScalaTest and TestNG.

**Usage**

To use it for ScalaTest 3.1.1 and TestNG 6.7:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "testng-6-7" % "3.1.1.0" % "test"
```

Maven:

```
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>testng-6-7_2.13</artifactId>
<version>3.1.1.0</version>
<scope>test</scope>
</dependency>
```

**Publishing**

Please use the following commands to publish to Sonatype:
Expand Down