You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Baptiste Mathus <ml...@batmat.net> on 2013/11/13 12:07:16 UTC

[ANN] extra-enforcer-rules 1.0-beta-2 Released

Hi,

The Mojo team is pleased to announce the release of the Extra Enforcer
Rules version 1.0-beta-2.

Apache's Maven Enforcer Plugin is used to apply and enforce rules on your
Maven projects.
The Enforcer plugin ships with a set of standard rules
The Mojo project hosts this project to provide extra rules which are not
part of the standard rule set.

http://mojo.codehaus.org/extra-enforcer-rules/

To get this update, simply specify the version in your project's plugin
configuration:

        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-enforcer-plugin</artifactId>
          <version>1.3.1</version>
          <dependencies>
            <dependency>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>extra-enforcer-rules</artifactId>
              <version>1.0-beta-2</version>
            </dependency>
          </dependencies>
        </plugin>

Basically, this releases mainly includes an evolution for the
enforceBytecodeVersion rule to be able to exclude some classes from the
enforcement (thanks Jesse & Kohsuke).

Release Notes<https://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11062&version=19563>
* Bug
** [MOJO-1980] - Add assertion message when corrupt classfile is detected
in enforceBytecodeVersion

* Improvement
** [MOJO-1976] - Artifact exclusion list for enforceBytecodeVersion

Enjoy,

The Mojo team.

-- Baptiste