This is usually already possible to do for plugins that use external libraries. What you do is that you add a dependency to the plugin for the updated version of the external library. Something along these lines:

    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>2.5.2</version>
        <dependency>
          <groupId>com.google.code.findbugs</groupId>
          <artifactId>findbugs-ant</artifactId>
          <version>2.0.2</version>
        <dependency>
      </plugin>
    </plugins>
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to