Index: src/it/full-pom/pom.xml
===================================================================
--- src/it/full-pom/pom.xml	(revision 0)
+++ src/it/full-pom/pom.xml	(revision 0)
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.codehaus.mojo.cobertura-maven-plugin</groupId>
+  <artifactId>full-pom</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <version>@pom.version@</version>
+        <executions>
+          <execution>
+            <id>cobertura-clean</id>
+            <phase>clean</phase>
+            <goals>
+              <goal>clean</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>cobertura-instrument</id>
+            <phase>process-classes</phase>
+            <goals>
+              <goal>instrument</goal>
+            </goals>
+            <configuration>
+              <instrumentation>
+                <includes>
+                  <include>**/*.class</include>
+                </includes>
+              </instrumentation>
+            </configuration>
+          </execution>
+          <execution>
+            <id>cobertura-check-only</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>check-only</goal>
+            </goals>
+            <configuration>
+              <check>
+                <branchRate>90</branchRate>
+                <lineRate>80</lineRate>
+                <haltOnFailure>true</haltOnFailure>
+                <totalBranchRate>90</totalBranchRate>
+                <totalLineRate>80</totalLineRate>
+                <packageLineRate>80</packageLineRate>
+                <packageBranchRate>90</packageBranchRate>
+              </check>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <version>@pom.version@</version>
+        <reportSets>
+          <reportSet>
+            <id>report-only</id>
+            <reports>
+              <report>report-only</report>
+            </reports>
+            <configuration>
+              <formats>
+                <format>html</format>
+              </formats>
+            </configuration>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>
Index: src/main/java/org/codehaus/mojo/cobertura/CoberturaReportOnlyMojo.java
===================================================================
--- src/main/java/org/codehaus/mojo/cobertura/CoberturaReportOnlyMojo.java	(revision 0)
+++ src/main/java/org/codehaus/mojo/cobertura/CoberturaReportOnlyMojo.java	(revision 0)
@@ -0,0 +1,31 @@
+package org.codehaus.mojo.cobertura;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * Generates a Cobertura Report.
+ * 
+ * @author <a href="mailto:sslavic@yahoo.com">Stevo Slavic</a>
+ * @goal report-only
+ * @execute phase="validate"
+ */
+public class CoberturaReportOnlyMojo extends CoberturaReportMojo {
+
+}
Index: src/main/java/org/codehaus/mojo/cobertura/CoberturaCheckOnlyMojo.java
===================================================================
--- src/main/java/org/codehaus/mojo/cobertura/CoberturaCheckOnlyMojo.java	(revision 0)
+++ src/main/java/org/codehaus/mojo/cobertura/CoberturaCheckOnlyMojo.java	(revision 0)
@@ -0,0 +1,31 @@
+package org.codehaus.mojo.cobertura;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * Generates a Cobertura Report.
+ * 
+ * @author <a href="mailto:sslavic@yahoo.com">Stevo Slavic</a>
+ * @goal check-only
+ * @execute phase="validate"
+ */
+public class CoberturaCheckOnlyMojo extends CoberturaCheckMojo {
+
+}
Index: src/main/java/org/codehaus/mojo/cobertura/tasks/AbstractTask.java
===================================================================
--- src/main/java/org/codehaus/mojo/cobertura/tasks/AbstractTask.java	(revision 12920)
+++ src/main/java/org/codehaus/mojo/cobertura/tasks/AbstractTask.java	(working copy)
@@ -138,7 +138,7 @@
             URL log4jurl = this.getClass().getClassLoader().getResource( resourceName );
             FileUtils.copyURLToFile( log4jurl, log4jconfigFile );
             log4jconfigFile.deleteOnExit();
-            path = log4jconfigFile.toURL().toExternalForm();
+            path = log4jconfigFile.toURI().toURL().toExternalForm();
         }
         catch ( MalformedURLException e )
         {
Index: pom.xml
===================================================================
--- pom.xml	(revision 12920)
+++ pom.xml	(working copy)
@@ -205,6 +205,7 @@
               <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
               <goals>
                 <goal>clean</goal>
+                <goal>verify</goal>
                 <goal>site</goal>
               </goals>
               <settingsFile>src/it/settings.xml</settingsFile>

