aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael Ackermann <raphael.ackermann@gmail.com>2015-04-10 12:44:42 +0200
committerRaphael Ackermann <raphael.ackermann@gmail.com>2015-04-10 12:44:42 +0200
commit2e0bcb57b8212c2fe90ada7084997479b9708db2 (patch)
tree971d9db95dd8bc711175534b24fc0ae637a7088e
parent19b4d4e2e41cd77ec91d37970d1da2787bb0a6ec (diff)
downloadjacoco-2e0bcb57b8212c2fe90ada7084997479b9708db2.tar.gz
fix typo in pom.xml comment
-rw-r--r--jacoco-maven-plugin.test/it/it-check-fails-halt/pom.xml4
-rw-r--r--jacoco-maven-plugin.test/it/it-check-fails-no-halt/pom.xml4
-rw-r--r--jacoco-maven-plugin.test/it/it-check-passes/pom.xml4
-rw-r--r--jacoco-maven-plugin.test/it/it-dump/pom.xml4
-rw-r--r--org.jacoco.examples/build/pom-it.xml4
-rw-r--r--org.jacoco.examples/build/pom-offline.xml4
-rw-r--r--org.jacoco.examples/build/pom.xml4
7 files changed, 14 insertions, 14 deletions
diff --git a/jacoco-maven-plugin.test/it/it-check-fails-halt/pom.xml b/jacoco-maven-plugin.test/it/it-check-fails-halt/pom.xml
index e81b2153..ad47b349 100644
--- a/jacoco-maven-plugin.test/it/it-check-fails-halt/pom.xml
+++ b/jacoco-maven-plugin.test/it/it-check-fails-halt/pom.xml
@@ -40,14 +40,14 @@
</goals>
<configuration>
<rules>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>CLASS</element>
<includes>
<include>Example</include>
</includes>
<limits>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<limit implementation="org.jacoco.report.check.Limit">
<counter>METHOD</counter>
<value>MISSEDCOUNT</value>
diff --git a/jacoco-maven-plugin.test/it/it-check-fails-no-halt/pom.xml b/jacoco-maven-plugin.test/it/it-check-fails-no-halt/pom.xml
index bc409a23..4d69d543 100644
--- a/jacoco-maven-plugin.test/it/it-check-fails-no-halt/pom.xml
+++ b/jacoco-maven-plugin.test/it/it-check-fails-no-halt/pom.xml
@@ -41,11 +41,11 @@
<configuration>
<haltOnFailure>false</haltOnFailure>
<rules>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<limit implementation="org.jacoco.report.check.Limit">
<counter>METHOD</counter>
<value>MISSEDCOUNT</value>
diff --git a/jacoco-maven-plugin.test/it/it-check-passes/pom.xml b/jacoco-maven-plugin.test/it/it-check-passes/pom.xml
index 23e60bce..19d6b5d1 100644
--- a/jacoco-maven-plugin.test/it/it-check-passes/pom.xml
+++ b/jacoco-maven-plugin.test/it/it-check-passes/pom.xml
@@ -40,11 +40,11 @@
</goals>
<configuration>
<rules>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<limit implementation="org.jacoco.report.check.Limit">
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
diff --git a/jacoco-maven-plugin.test/it/it-dump/pom.xml b/jacoco-maven-plugin.test/it/it-dump/pom.xml
index 491eab89..eeef1b7f 100644
--- a/jacoco-maven-plugin.test/it/it-dump/pom.xml
+++ b/jacoco-maven-plugin.test/it/it-dump/pom.xml
@@ -50,11 +50,11 @@
</goals>
<configuration>
<rules>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<limit implementation="org.jacoco.report.check.Limit">
<counter>CLASS</counter>
<value>COVEREDCOUNT</value>
diff --git a/org.jacoco.examples/build/pom-it.xml b/org.jacoco.examples/build/pom-it.xml
index b199240f..69ea3141 100644
--- a/org.jacoco.examples/build/pom-it.xml
+++ b/org.jacoco.examples/build/pom-it.xml
@@ -74,11 +74,11 @@
</goals>
<configuration>
<rules>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<limit implementation="org.jacoco.report.check.Limit">
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
diff --git a/org.jacoco.examples/build/pom-offline.xml b/org.jacoco.examples/build/pom-offline.xml
index 740c4561..7d48373d 100644
--- a/org.jacoco.examples/build/pom-offline.xml
+++ b/org.jacoco.examples/build/pom-offline.xml
@@ -76,11 +76,11 @@
</goals>
<configuration>
<rules>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<limit implementation="org.jacoco.report.check.Limit">
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
diff --git a/org.jacoco.examples/build/pom.xml b/org.jacoco.examples/build/pom.xml
index 7b111d42..2750b7ba 100644
--- a/org.jacoco.examples/build/pom.xml
+++ b/org.jacoco.examples/build/pom.xml
@@ -63,11 +63,11 @@
</goals>
<configuration>
<rules>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
- <!-- implmentation is needed only for Maven 2 -->
+ <!-- implementation is needed only for Maven 2 -->
<limit implementation="org.jacoco.report.check.Limit">
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>