You are viewing a plain text version of this content. The canonical link for it is here.
Posted to announce@apache.org by John Casey <jd...@apache.org> on 2009/09/22 21:52:21 UTC

[ANN] Maven Verifier 1.2 Released

The Maven team is pleased to announce the release of the Maven Verifier,
version 1.2

This is a shared library for use in testing various Maven components. It
allows the user to execute Maven builds as part of the testing process,
with methods supporting test preparation and assertion of results.

http://maven.apache.org/shared/maven-verifier/

To use the verifier, add the following to your POM's dependencies section:

<dependency>
  <groupId>org.apache.maven.shared</groupId>
  <artifactId>maven-verifier</artifactId>
  <version>1.2</version>
  <scope>test</scope>
</dependency>


Release Notes - Maven Shared Components - Version maven-verifier 1.2


** Bug
     * [MSHARED-73] - Verifier doesn't throw VerificationException upon
non-zero exit code of mvn.bat on Windows
     * [MSHARED-76] - Verifier executeGoal method is OS-dependent in
case of failure

** Improvement
     * [MSHARED-72] - Use current local repo for forked Maven
invocations by default

** New Feature
     * [MSHARED-75] - Add convenience method to clean (target) directory


Enjoy,

-The Maven team