diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-04-14 14:18:18 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-04-14 14:35:53 +0300 |
commit | 9192b0bb5e5e699b506b3d3e7df4cf295fbea44a (patch) | |
tree | 59ef3a349e4bd640e64ea6c97e5de8ed63643865 /uitest/pom.xml | |
parent | 63c3404c9d052cec27c9301da7f46110dd5522c1 (diff) | |
download | vaadin-framework-9192b0bb5e5e699b506b3d3e7df4cf295fbea44a.tar.gz vaadin-framework-9192b0bb5e5e699b506b3d3e7df4cf295fbea44a.zip |
Add profile to enable uitest deploy
Change-Id: I6393204fc9d2e02c77ff2969fb6502dfb71019e9
Diffstat (limited to 'uitest/pom.xml')
-rw-r--r-- | uitest/pom.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/uitest/pom.xml b/uitest/pom.xml index 6e25bbcf0e..b49922fe2f 100644 --- a/uitest/pom.xml +++ b/uitest/pom.xml @@ -325,4 +325,27 @@ </pluginManagement> </build> + <profiles> + <profile> + <!-- Profile used to deploy the uitest war for testing --> + <id>dev-build</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> + </profiles> + </project> |