Skip to content

Commit 940c575

Browse files
committed
Added usage instructions to README.md.
1 parent a1c6a58 commit 940c575

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,31 @@
11
# ScalaTest + Mockito
22
ScalaTest + Mockito provides integration support between ScalaTest and Mockito.
33

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

627
Please use the following commands to publish to Sonatype:
728

829
```
930
$ sbt +publishSigned
10-
```
31+
```

0 commit comments

Comments
 (0)