Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2013-09-25 23:29:56 +0000
committerRoberto E. Escobar2013-09-25 23:30:05 +0000
commit36776ed72c085faf5c8521b5bcea3bb3ad4c65c8 (patch)
treeab20eb9f8423e565c16275c632ac17d8ad5245bd /plugins/org.eclipse.osee.coverage.parent
parent2f78b969483f5a61a7360a472f11d48820b0942f (diff)
downloadorg.eclipse.osee-36776ed72c085faf5c8521b5bcea3bb3ad4c65c8.tar.gz
org.eclipse.osee-36776ed72c085faf5c8521b5bcea3bb3ad4c65c8.tar.xz
org.eclipse.osee-36776ed72c085faf5c8521b5bcea3bb3ad4c65c8.zip
refinement: Add flag to skip help tests during build
Diffstat (limited to 'plugins/org.eclipse.osee.coverage.parent')
-rw-r--r--plugins/org.eclipse.osee.coverage.parent/pom.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.coverage.parent/pom.xml b/plugins/org.eclipse.osee.coverage.parent/pom.xml
index 27c9e3df077..c9f6f562c9b 100644
--- a/plugins/org.eclipse.osee.coverage.parent/pom.xml
+++ b/plugins/org.eclipse.osee.coverage.parent/pom.xml
@@ -21,7 +21,6 @@
<module>../../plugins/org.eclipse.osee.coverage.test</module>
<module>../../plugins/org.eclipse.osee.coverage.help.ui</module>
- <module>../../plugins/org.eclipse.osee.coverage.help.ui.test</module>
<module>../../features/org.eclipse.osee.coverage.feature</module>
@@ -34,4 +33,17 @@
<module>../../plugins/org.eclipse.osee.coverage.p2</module>
</modules>
+ <profiles>
+ <profile>
+ <id>coverage-help-test</id>
+ <activation>
+ <property>
+ <name>!skip-help-tests</name>
+ </property>
+ </activation>
+ <modules>
+ <module>../../plugins/org.eclipse.osee.coverage.help.ui.test</module>
+ </modules>
+ </profile>
+ </profiles>
</project>

Back to the top