diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-01-09 16:58:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-09 16:58:48 +0200 |
commit | bc458ce1de016b18148298fc6a010f43954586b0 (patch) | |
tree | f76b1e470be2078733cf2af816500d19f310caf3 | |
parent | 629e9dd5fe648f42c36c35d99ef7d0d4005abedf (diff) | |
download | vaadin-framework-bc458ce1de016b18148298fc6a010f43954586b0.tar.gz vaadin-framework-bc458ce1de016b18148298fc6a010f43954586b0.zip |
Clean up pom.xml files in vaadin-test (#8181)
Use plugin management for maven plugin, remove version numbers
-rw-r--r-- | test/addon-using-init-param-widget-set/pom.xml | 10 | ||||
-rw-r--r-- | test/addon-using-no-defined-widget-set/pom.xml | 10 | ||||
-rw-r--r-- | test/addon-using-own-widget-set/pom.xml | 10 | ||||
-rw-r--r-- | test/default-widget-set/pom.xml | 3 | ||||
-rw-r--r-- | test/own-widget-set/pom.xml | 10 | ||||
-rw-r--r-- | test/pom.xml | 14 | ||||
-rw-r--r-- | test/space in directory/pom.xml | 10 | ||||
-rw-r--r-- | test/vaadinservletconfiguration-widget-set/pom.xml | 10 |
8 files changed, 15 insertions, 62 deletions
diff --git a/test/addon-using-init-param-widget-set/pom.xml b/test/addon-using-init-param-widget-set/pom.xml index abae3e8347..325329ac72 100644 --- a/test/addon-using-init-param-widget-set/pom.xml +++ b/test/addon-using-init-param-widget-set/pom.xml @@ -33,16 +33,6 @@ <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> - <version>${vaadin.plugin.version}</version> - <executions> - <execution> - <goals> - <goal>resources</goal> - <goal>update-widgetset</goal> - <goal>compile</goal> - </goals> - </execution> - </executions> </plugin> </plugins> </build> diff --git a/test/addon-using-no-defined-widget-set/pom.xml b/test/addon-using-no-defined-widget-set/pom.xml index 231c8af5d8..54b637e2df 100644 --- a/test/addon-using-no-defined-widget-set/pom.xml +++ b/test/addon-using-no-defined-widget-set/pom.xml @@ -28,16 +28,6 @@ <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> - <version>${vaadin.plugin.version}</version> - <executions> - <execution> - <goals> - <goal>resources</goal> - <goal>update-widgetset</goal> - <goal>compile</goal> - </goals> - </execution> - </executions> </plugin> </plugins> </build> diff --git a/test/addon-using-own-widget-set/pom.xml b/test/addon-using-own-widget-set/pom.xml index de1014b964..3f1dfd2e38 100644 --- a/test/addon-using-own-widget-set/pom.xml +++ b/test/addon-using-own-widget-set/pom.xml @@ -28,16 +28,6 @@ <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> - <version>${vaadin.plugin.version}</version> - <executions> - <execution> - <goals> - <goal>resources</goal> - <goal>update-widgetset</goal> - <goal>compile</goal> - </goals> - </execution> - </executions> </plugin> </plugins> </build> diff --git a/test/default-widget-set/pom.xml b/test/default-widget-set/pom.xml index 062f14e0d0..3006ea78b0 100644 --- a/test/default-widget-set/pom.xml +++ b/test/default-widget-set/pom.xml @@ -18,8 +18,7 @@ <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-client-compiled</artifactId> - <version>${project.version}</version> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> diff --git a/test/own-widget-set/pom.xml b/test/own-widget-set/pom.xml index e6fd8f2907..cf3d272f3c 100644 --- a/test/own-widget-set/pom.xml +++ b/test/own-widget-set/pom.xml @@ -21,16 +21,6 @@ <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> - <version>${vaadin.plugin.version}</version> - <executions> - <execution> - <goals> - <goal>resources</goal> - <goal>update-widgetset</goal> - <goal>compile</goal> - </goals> - </execution> - </executions> </plugin> </plugins> </build> diff --git a/test/pom.xml b/test/pom.xml index 587e879802..314a52fbef 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -133,6 +133,20 @@ <skip>true</skip> </configuration> </plugin> + <plugin> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-maven-plugin</artifactId> + <version>${vaadin.plugin.version}</version> + <executions> + <execution> + <goals> + <goal>resources</goal> + <goal>update-widgetset</goal> + <goal>compile</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </pluginManagement> diff --git a/test/space in directory/pom.xml b/test/space in directory/pom.xml index 9d3b8dff0c..90090b930f 100644 --- a/test/space in directory/pom.xml +++ b/test/space in directory/pom.xml @@ -20,16 +20,6 @@ <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> - <version>${vaadin.plugin.version}</version> - <executions> - <execution> - <goals> - <goal>resources</goal> - <goal>update-widgetset</goal> - <goal>compile</goal> - </goals> - </execution> - </executions> </plugin> </plugins> </build> diff --git a/test/vaadinservletconfiguration-widget-set/pom.xml b/test/vaadinservletconfiguration-widget-set/pom.xml index 336f0a1ddc..c98951df1a 100644 --- a/test/vaadinservletconfiguration-widget-set/pom.xml +++ b/test/vaadinservletconfiguration-widget-set/pom.xml @@ -21,16 +21,6 @@ <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> - <version>${vaadin.plugin.version}</version> - <executions> - <execution> - <goals> - <goal>resources</goal> - <goal>update-widgetset</goal> - <goal>compile</goal> - </goals> - </execution> - </executions> </plugin> </plugins> </build> |