diff options
author | John Ahlroos <john@vaadin.com> | 2016-09-28 13:52:11 +0300 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2016-10-18 12:51:58 +0300 |
commit | 8b2de181c37ee855608153fdff9a58474bf945cc (patch) | |
tree | b5deed73f9d94afa942beef946e500b139936f28 /client/pom.xml | |
parent | 8d56ae55ede761d4392ead96b1e11f5602892629 (diff) | |
download | vaadin-framework-8b2de181c37ee855608153fdff9a58474bf945cc.tar.gz vaadin-framework-8b2de181c37ee855608153fdff9a58474bf945cc.zip |
Fix Mockito/Hamcrest build classpath conflict
* Fixes issue with Mockito classes not found on the vaadin-client test classpath
* Fixes Mockito/Hamcrest dependency conflict described in
https://tedvinke.wordpress.com/2013/12/17/mixing-junit-hamcrest-and-mockito-explaining-nosuchmethoderror/
Reapplying after dependency leaking from root project to bom module has been fixed.
Change-Id: I0f2f368ccc6acb303f693aa34ace9e893ab7b573
Diffstat (limited to 'client/pom.xml')
-rw-r--r-- | client/pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/pom.xml b/client/pom.xml index ca6009a007..53a497b183 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -41,6 +41,11 @@ <groupId>com.google.gwt</groupId> <artifactId>gwt-elemental</artifactId> </dependency> + + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + </dependency> </dependencies> <build> |