summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--uitest/pom.xml23
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>