aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.examples
diff options
context:
space:
mode:
authorMirko Friedenhagen <mfriedenhagen@gmail.com>2013-10-10 20:51:57 +0200
committerMirko Friedenhagen <mfriedenhagen@gmail.com>2013-10-10 20:51:57 +0200
commit60f313a56d4cd2132cedcdc36ce7fa4148ecbd0e (patch)
treee73e2a69a00416f94c0d249fe1124adbf9b074bf /org.jacoco.examples
parent1bbf1debc32022aa1a680adc78487756fb6755fd (diff)
downloadjacoco-60f313a56d4cd2132cedcdc36ce7fa4148ecbd0e.tar.gz
Add default prefix to the Maven execution IDs in jacoco examples.
As discussed in https://groups.google.com/d/msg/jacoco/NuJc2YgTsSk/X9ccG4iL7oYJ
Diffstat (limited to 'org.jacoco.examples')
-rw-r--r--org.jacoco.examples/build/pom-offline.xml10
-rw-r--r--org.jacoco.examples/build/pom.xml6
2 files changed, 11 insertions, 5 deletions
diff --git a/org.jacoco.examples/build/pom-offline.xml b/org.jacoco.examples/build/pom-offline.xml
index 0bd1d190..7ae7ff10 100644
--- a/org.jacoco.examples/build/pom-offline.xml
+++ b/org.jacoco.examples/build/pom-offline.xml
@@ -46,20 +46,26 @@
<version>@project.version@</version>
<executions>
<execution>
+ <id>default-instrument</id>
<goals>
<goal>instrument</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>default-restore-instrumented-classes</id>
+ <goals>
<goal>restore-instrumented-classes</goal>
</goals>
</execution>
<execution>
- <id>report</id>
+ <id>default-report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
- <id>check</id>
+ <id>default-check</id>
<goals>
<goal>check</goal>
</goals>
diff --git a/org.jacoco.examples/build/pom.xml b/org.jacoco.examples/build/pom.xml
index 9194002c..8ed295bb 100644
--- a/org.jacoco.examples/build/pom.xml
+++ b/org.jacoco.examples/build/pom.xml
@@ -39,20 +39,20 @@
<version>@project.version@</version>
<executions>
<execution>
- <id>prepare-agent</id>
+ <id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
- <id>report</id>
+ <id>default-report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
- <id>check</id>
+ <id>default-check</id>
<goals>
<goal>check</goal>
</goals>