Skip to content

Commit

Permalink
Add usage for SBT and Maven in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ikhoon committed May 5, 2020
1 parent 905182a commit 6d6ecfd
Showing 1 changed file with 21 additions and 0 deletions.
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

0 comments on commit 6d6ecfd

Please sign in to comment.