Author: dgolovin
Date: 2012-01-19 18:16:27 -0500 (Thu, 19 Jan 2012)
New Revision: 37977
Modified:
trunk/forge/tests/pom.xml
Log:
tis fix is a result from runnig forge tests with coverage. tests are not eanbled for now
because they are not configured to run on hudson.
Modified: trunk/forge/tests/pom.xml
===================================================================
--- trunk/forge/tests/pom.xml 2012-01-19 22:28:05 UTC (rev 37976)
+++ trunk/forge/tests/pom.xml 2012-01-19 23:16:27 UTC (rev 37977)
@@ -9,12 +9,46 @@
</parent>
<groupId>org.jboss.tools.forge</groupId>
<artifactId>tests</artifactId>
-
<name>forge.tests</name>
<packaging>pom</packaging>
- <modules>
- <module>org.jboss.tools.forge.core.test</module>
- <module>org.jboss.tools.forge.ui.test</module>
- </modules>
+ <profiles>
+ <profile>
+ <id>forge-tests-libs</id>
+ <activation>
+ <property>
+ <name>forge-coverage</name>
+ </property>
+ </activation>
+ <modules>
+ <module>../../build/libs</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>forge-tests-default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ <property>
+ <name>forge-coverage</name>
+ </property>
+ </activation>
+ <modules>
+ <module>org.jboss.tools.forge.core.test</module>
+ <module>org.jboss.tools.forge.ui.test</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>forge-tests-coverage-report</id>
+ <activation>
+ <property>
+ <name>forge-coverage</name>
+ </property>
+ </activation>
+ <modules>
+ <module>../../build/reports/emma-coverage</module>
+ </modules>
+ </profile>
+ </profiles>
</project>