We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 704190b + 10f42bb commit 1d3b4a9Copy full SHA for 1d3b4a9
README.md
@@ -1,10 +1,31 @@
1
# ScalaTest + JUnit
2
ScalaTest + JUnit provides integration support between ScalaTest and JUnit.
3
4
+**Usage**
5
+
6
+To use it for ScalaTest 3.1.2 and JUnit 4.12.x:
7
8
+SBT:
9
10
+```
11
+libraryDependencies += "org.scalatestplus" %% "junit-4-12" % "3.1.2.0" % "test"
12
13
14
+Maven:
15
16
17
+<dependency>
18
+ <groupId>org.scalatestplus</groupId>
19
+ <artifactId>junit-4-12</artifactId>
20
+ <version>3.1.2.0</version>
21
+ <scope>test</scope>
22
+</dependency>
23
24
25
**Publishing**
26
27
Please use the following commands to publish to Sonatype:
28
29
```
30
$ sbt +publishSigned
-```
31
0 commit comments