Skip to content

Commit 0969815

Browse files
committed
Add usage for SBT and Maven in README.md
1 parent 905182a commit 0969815

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
# ScalaTest + TestNG
22
ScalaTest + TestNG provides integration support between ScalaTest and TestNG.
33

4+
**Usage**
5+
6+
To use it for ScalaTest 3.1.1 and TestNG 6.7:
7+
8+
SBT:
9+
10+
```
11+
libraryDependencies += "org.scalatestplus" %% "testng-6-7" % "3.1.1.0" % "test"
12+
```
13+
14+
Maven:
15+
16+
```
17+
<dependency>
18+
<groupId>org.scalatestplus</groupId>
19+
<artifactId>testng-6-7</artifactId>
20+
<version>3.1.1.0</version>
21+
<scope>test</scope>
22+
</dependency>
23+
```
24+
425
**Publishing**
526

627
Please use the following commands to publish to Sonatype:

0 commit comments

Comments
 (0)