Apache Maven Shared Invoker Version 3.1.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Shared Maven Invoker, version 3.1.0

This API is concerned with firing a Maven build in a new JVM. It accomplishes its task by building up a conventional Maven command line from options given in the current request, along with those global options specified in the invoker itself. Once it has the command line, the invoker will execute it, and capture the resulting exit code or any exception thrown to signal a failure to execute. Input/output control can be specified using an InputStream and up to two InvocationOutputHandlers.

You can download the appropriate sources etc. from the download page.

1<dependencies>
2  <dependency>
3    <groupId>org.apache.maven.shared</groupId>
4    <artifactId>maven-invoker</artifactId>
5    <version>3.1.0</version>
6  </dependency>
7</dependencies>

Release Notes - Maven Shared Components - Version maven-invoker-3.1.0

Improvement:

  • MSHARED-702 - Remove hard coded versions for plexus-component-annotations/plexus-component-metadata

Tasks:

  • MSHARED-625 - Refactored to use 'maven-shared-utils' instead of 'plexus-utils'.
  • MSHARED-729 - Upgrade to JDK 7 minimum.

Dependency upgrades:

Enjoy,

-The Apache Maven team