The maven cobertura plugin page
http://mojo.codehaus.org/cobertura-maven-plugin/usage.html has an
example like:

<plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <configuration>
          <instrumentation>
            <ignores>
              <ignore>com.example.boringcode.*</ignore>
            </ignores>
            <excludes>
              <exclude>com/example/dullcode/**/*.class</exclude>
              <exclude>com/example/**/*Test.class</exclude>
            </excludes>
          </instrumentation>
        </configuration>
        ...
      </plugin>

what is "ignore" used for? What's the difference between ignore and
exclude? I don't see the concept of ignore mentioned at all on the
cobertura site so I'm guessing it's a maven thing?

-- 
Rick

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

Reply via email to