Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pom-tests.xml14
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tests/pom.xml4
2 files changed, 18 insertions, 0 deletions
diff --git a/pom-tests.xml b/pom-tests.xml
index 937501af0..321b1df37 100644
--- a/pom-tests.xml
+++ b/pom-tests.xml
@@ -134,6 +134,20 @@
</configuration>
</plugin>
</plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>emma-maven-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>instrument</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</pluginManagement>
</build>
</project> \ No newline at end of file
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tests/pom.xml b/target_explorer/plugins/org.eclipse.tcf.te.tests/pom.xml
index 94ca1a05b..8545f9b0a 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tests/pom.xml
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tests/pom.xml
@@ -21,6 +21,10 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>emma-maven-plugin</artifactId>
+ </plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>

Back to the top