This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit 3c610f1b8ec065bd6984362d8d406135b51a059c Author: juanpablo <[email protected]> AuthorDate: Tue Mar 31 19:23:15 2020 +0200 add mockito dependencies --- jspwiki-api/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/jspwiki-api/pom.xml b/jspwiki-api/pom.xml index b6678cc..4639f12 100644 --- a/jspwiki-api/pom.xml +++ b/jspwiki-api/pom.xml @@ -81,5 +81,17 @@ <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-junit-jupiter</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project>
