Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2010-09-08 16:50:59 +0000
committerMatthias Sohn2010-09-08 16:50:59 +0000
commit3811d4537e5c28606f5e7b226ee9d5818d941e3f (patch)
tree50d824c446c7414e359c4b93b5291a2f1d742852 /org.eclipse.egit.ui.test/pom.xml
parentff2c89b7635c17e55ddfc1d37fc91b60ff405a1e (diff)
downloadegit-3811d4537e5c28606f5e7b226ee9d5818d941e3f.tar.gz
egit-3811d4537e5c28606f5e7b226ee9d5818d941e3f.tar.xz
egit-3811d4537e5c28606f5e7b226ee9d5818d941e3f.zip
Add maven profile to enable skipping UI tests
Since we now want to enable core tests on Hudson, but we still have no solution for bug 314811 we need a way to skip the UI tests on Hudson. Change-Id: I301480b5a0a15805cd969f85d3ab0bc7ac638d37 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.ui.test/pom.xml')
-rw-r--r--org.eclipse.egit.ui.test/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui.test/pom.xml b/org.eclipse.egit.ui.test/pom.xml
index 3872942d88..61ec8e4a68 100644
--- a/org.eclipse.egit.ui.test/pom.xml
+++ b/org.eclipse.egit.ui.test/pom.xml
@@ -37,6 +37,20 @@
</repository>
</repositories>
+ <profiles>
+ <profile>
+ <id>skip-ui-tests</id>
+ <activation>
+ <property>
+ <name>skip-ui-tests</name>
+ </property>
+ </activation>
+ <properties>
+ <maven.test.skip>true</maven.test.skip>
+ </properties>
+ </profile>
+ </profiles>
+
<build>
<plugins>
<plugin>

Back to the top