diff options
author | Artur Signell <artur@vaadin.com> | 2016-08-18 19:32:05 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-18 20:05:57 +0300 |
commit | a836efc40cbda8cf0e8548b4b6cf4cf2a0e0026e (patch) | |
tree | 53aecbb6243ec10ab6e55a83b309ed791dea04ab /server/pom.xml | |
parent | e10ec4ca0d5ff06f5dacc790d58c6390ba21675d (diff) | |
download | vaadin-framework-a836efc40cbda8cf0e8548b4b6cf4cf2a0e0026e.tar.gz vaadin-framework-a836efc40cbda8cf0e8548b4b6cf4cf2a0e0026e.zip |
Define common test dependencies in the main pom file
Change-Id: I7d5897384f1172befbc852e27a7372104e7820da
Diffstat (limited to 'server/pom.xml')
-rw-r--r-- | server/pom.xml | 37 |
1 files changed, 6 insertions, 31 deletions
diff --git a/server/pom.xml b/server/pom.xml index 68db722ef8..f18c275b90 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -82,32 +82,7 @@ <!-- TESTING DEPENDENCIES --> - <!-- Test frameworks & related --> - <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.hsqldb</groupId> - <artifactId>hsqldb</artifactId> - <scope>test</scope> - </dependency> + <!-- Test dependencies --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> @@ -119,13 +94,13 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> + <groupId>org.hsqldb</groupId> + <artifactId>hsqldb</artifactId> <scope>test</scope> </dependency> <dependency> - <groupId>org.hibernate</groupId> - <artifactId>hibernate-validator</artifactId> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> @@ -134,7 +109,7 @@ </dependencies> <build> - <plugins> + <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> |