pom.xml: add junit and mockito-core dependencies for testing

Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
Paul Campbell 2015-10-21 23:03:36 +01:00
parent 9cd5b0c69c
commit 1215fe8fa9

11
pom.xml
View file

@ -45,6 +45,17 @@
<artifactId>subethasmtp</artifactId>
<version>3.1.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
<type>jar</type>
</dependency>
</dependencies>
</project>