Hi,

We are using M2.2 and Emma plugin to report coverage. I want to exlcude
certain packages from code coverage using emma-maven plugin. I dont want to
use CLI. This doesnt seem to work. Any suggestions ?

I still see coverage reported for com.abc.t3.db ?

        <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>emma-maven-plugin</artifactId>
        <inherited>true</inherited>
<executions>
<execution>
        <configuration>
<filters>
<filter>-com/abc/t3/cm/db/**/*</filter>
<filter>-**/*Abstract*Test.java</filter>
<filter>-test/integration/**/*.java</filter>
<filter>-**/*$*</filter>
</filters>
</configuration>
<goals>
<goal>instrument</goal>
</goals>
</execution>
</executions>
</plugin>
-- 
View this message in context: 
http://www.nabble.com/emma-exclude-filter-tp25881236p25881236.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to