summaryrefslogtreecommitdiffstats
path: root/client/pom.xml
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2016-09-28 13:52:11 +0300
committerPekka Hyvönen <pekka@vaadin.com>2016-10-18 12:51:58 +0300
commit8b2de181c37ee855608153fdff9a58474bf945cc (patch)
treeb5deed73f9d94afa942beef946e500b139936f28 /client/pom.xml
parent8d56ae55ede761d4392ead96b1e11f5602892629 (diff)
downloadvaadin-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.xml5
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>