summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-08-18 19:32:05 +0300
committerArtur Signell <artur@vaadin.com>2016-08-18 20:05:57 +0300
commita836efc40cbda8cf0e8548b4b6cf4cf2a0e0026e (patch)
tree53aecbb6243ec10ab6e55a83b309ed791dea04ab /pom.xml
parente10ec4ca0d5ff06f5dacc790d58c6390ba21675d (diff)
downloadvaadin-framework-a836efc40cbda8cf0e8548b4b6cf4cf2a0e0026e.tar.gz
vaadin-framework-a836efc40cbda8cf0e8548b4b6cf4cf2a0e0026e.zip
Define common test dependencies in the main pom file
Change-Id: I7d5897384f1172befbc852e27a7372104e7820da
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml31
1 files changed, 30 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 37303fcf68..e2317026f8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -257,8 +257,37 @@
<version>3.5.1.201410131835-r</version>
</dependency>
</dependencies>
-
</dependencyManagement>
+
+ <!-- Common test dependencies -->
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-all</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-all</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.easymock</groupId>
+ <artifactId>easymock</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
<build>
<pluginManagement>
<plugins>