Hi,

Following is the simple example which is working at my end. Try it...

 <build>
   <plugins>
     <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <configuration>
              <check branchrate="80" linerate="70" haltonerror="true"
                    totalbranchrate="80" totallinerate="70">
             </check>
       </configuration>
       <executions>
             <execution>
                   <goals>
                       <goal>instrument</goal>
                       <goal>clean</goal>
                       <goal>check</goal>
                  </goals>
            </execution>
       </executions>
     </plugin>
   </plugins>
 </build>

 <reporting>
     <plugins>
         <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>cobertura-maven-plugin</artifactId>
         </plugin>
     </plugins>
 </reporting>






On 7/5/06, leahpar <[EMAIL PROTECTED]> wrote:


hello,
I don't get the instrument goal but please find below a simple example
working here ... it's all help i can give.
cordialement


                       <build>
                               <plugins>
                                       <plugin>
                                               <groupId>org.codehaus.mojo
</groupId>

<artifactId>cobertura-maven-plugin</artifactId>
                                               <executions>
                                                       <execution>
                                                               <goals>

<goal>clean</goal>
                                                               </goals>
                                                       </execution>
                                               </executions>
                                       </plugin>
                               </plugins>
                       </build>
                       <reporting>
                               <plugins>
                                       <plugin>
                                               <groupId>org.codehaus.mojo
</groupId>

<artifactId>cobertura-maven-plugin</artifactId>
                                       </plugin>
--
View this message in context:
http://www.nabble.com/Cobertura-plugin-using-version-1.7-tf1889535.html#a5182548
Sent from the Maven - Users forum at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Reply via email to