diff options
Diffstat (limited to 'test/pom.xml')
-rw-r--r-- | test/pom.xml | 97 |
1 files changed, 52 insertions, 45 deletions
diff --git a/test/pom.xml b/test/pom.xml index 622699b64f..587e879802 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -14,7 +14,9 @@ <jetty.version>9.3.7.v20160115</jetty.version> <phantomjs.version>2.1.1</phantomjs.version> <vaadin.version>8.0-SNAPSHOT</vaadin.version> + <vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version> <failOnMissingWebXml>false</failOnMissingWebXml> + <contextmenu.version>2.0-SNAPSHOT</contextmenu.version> <!-- Don't care about coding style for tests --> <sonar.skip>true</sonar.skip> </properties> @@ -35,6 +37,11 @@ <type>pom</type> <scope>import</scope> </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-test-widget-set-testutil</artifactId> + <version>${project.version}</version> + </dependency> </dependencies> </dependencyManagement> @@ -46,7 +53,7 @@ <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> </dependency> - + <!-- Project modules --> <dependency> <groupId>com.vaadin</groupId> @@ -85,6 +92,50 @@ </modules> <build> + <pluginManagement> + <plugins> + <!--This plugin's configuration is used to store Eclipse + m2e settings only. It has no influence on the Maven build itself. --> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + com.github.klieber + </groupId> + <artifactId> + phantomjs-maven-plugin + </artifactId> + <versionRange> + [0.7,) + </versionRange> + <goals> + <goal>install</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + <plugin> + <artifactId>maven-install-plugin</artifactId> + <version>2.5.1</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </pluginManagement> + <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> @@ -151,50 +202,6 @@ </systemPropertyVariables> </configuration> </plugin> - - <plugin> - <artifactId>maven-install-plugin</artifactId> - <version>2.5.2</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> </plugins> - <pluginManagement> - <plugins> - <!--This plugin's configuration is used to store Eclipse m2e - settings only. It has no influence on the Maven build itself. --> - <plugin> - <groupId>org.eclipse.m2e</groupId> - <artifactId>lifecycle-mapping</artifactId> - <version>1.0.0</version> - <configuration> - <lifecycleMappingMetadata> - <pluginExecutions> - <pluginExecution> - <pluginExecutionFilter> - <groupId> - com.github.klieber - </groupId> - <artifactId> - phantomjs-maven-plugin - </artifactId> - <versionRange> - [0.7,) - </versionRange> - <goals> - <goal>install</goal> - </goals> - </pluginExecutionFilter> - <action> - <ignore></ignore> - </action> - </pluginExecution> - </pluginExecutions> - </lifecycleMappingMetadata> - </configuration> - </plugin> - </plugins> - </pluginManagement> </build> </project> |