diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2016-12-18 08:45:05 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2016-12-18 08:45:05 +0200 |
commit | 6b51788ee7c2a8b147744bc11d220fb3ed896672 (patch) | |
tree | 4f310c85f2e5d77179a6aa218c3740c29e3410f7 /test/pom.xml | |
parent | 52decf5e2b32116deb5de32b7706cda198c52347 (diff) | |
download | vaadin-framework-6b51788ee7c2a8b147744bc11d220fb3ed896672.tar.gz vaadin-framework-6b51788ee7c2a8b147744bc11d220fb3ed896672.zip |
Add CDI dependency version to vaadin-bom (#8020)
Unify test UIs and test code for Spring and CDI.
Diffstat (limited to 'test/pom.xml')
-rw-r--r-- | test/pom.xml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/pom.xml b/test/pom.xml index 6215d61112..f9a38d0592 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -15,7 +15,6 @@ <phantomjs.version>2.1.1</phantomjs.version> <vaadin.version>8.0-SNAPSHOT</vaadin.version> <failOnMissingWebXml>false</failOnMissingWebXml> - <vaadin.testbench.version>5.0.0.alpha1</vaadin.testbench.version> </properties> <repositories> @@ -40,6 +39,12 @@ <dependencies> <!-- API DEPENDENCIES --> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <version>3.0.1</version> + </dependency> + <!-- Project modules --> <dependency> <groupId>com.vaadin</groupId> @@ -60,7 +65,6 @@ <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-testbench</artifactId> - <version>${vaadin.testbench.version}</version> <scope>test</scope> </dependency> </dependencies> @@ -75,6 +79,7 @@ <module>space in directory</module> <module>vaadinservletconfiguration-widget-set</module> <module>spring-boot</module> + <module>cdi</module> </modules> <build> |