Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2014-01-27 17:19:07 +0000
committerUwe Stieber2014-01-27 17:19:07 +0000
commit64329e2910a4709937e85cb5fa1d6e9315ce0006 (patch)
tree91e16299ff2ff7d29c7500ef44aad2b7f3845621
parent33e38eea36258b09781a3b74bebe8cdacb21e3b0 (diff)
downloadorg.eclipse.tcf-64329e2910a4709937e85cb5fa1d6e9315ce0006.tar.gz
org.eclipse.tcf-64329e2910a4709937e85cb5fa1d6e9315ce0006.tar.xz
org.eclipse.tcf-64329e2910a4709937e85cb5fa1d6e9315ce0006.zip
Tests: Re-add prepare Jacoco agent step
-rw-r--r--admin/pom-build.xml30
1 files changed, 29 insertions, 1 deletions
diff --git a/admin/pom-build.xml b/admin/pom-build.xml
index 14d8e18a0..977529edc 100644
--- a/admin/pom-build.xml
+++ b/admin/pom-build.xml
@@ -74,6 +74,35 @@
</plugins>
</build>
</profile>
+
+ <profile>
+ <id>tests</id>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>prepare-agent</goal>
+ </goals>
+ <configuration>
+ <includes>
+ <include>org.eclipse.tcf*</include>
+ </includes>
+ <excludes>
+ <exclude>org.eclipse.tcf.debug.test*</exclude>
+ <exclude>org.eclipse.tcf.te.tests.*</exclude>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
<profile>
<id>validate</id>
@@ -118,7 +147,6 @@
</plugin>
</plugins>
</build>
-
</profile>
</profiles>
</project>

Back to the top