Mick Knutson wrote:

I want to know how I can put cobertura.ser into my target DIR so when I run
mvn clean, the cobertura files get cleaned as well.

I read somewhere to put this in your plug-ins so cobertura files would be
cleaned as part of the clean goal.  It works for me.


     <plugin>
       <groupId>org.codehaus.mojo</groupId>
       <artifactId>cobertura-maven-plugin</artifactId>
       <executions>
         <execution>
           <id>clean</id>
           <goals>
             <goal>clean</goal>
           </goals>
         </execution>
       </executions>
     </plugin>

Gail

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

Reply via email to