Apache Maven Invoker Plugin Version 3.2.2 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Invoker Plugin, version 3.2.2.

The Invoker Plugin is used to run a set of Maven projects. The plugin can determine whether each project execution is successful, and optionally can verify the output generated from a given project execution.

This plugin is in particular handy to perform integration tests for other Maven plugins. The Invoker Plugin can be employed to run a set of test projects that have been designed to assert certain features of the plugin under test.

You should specify the version in your project's plugin configuration:

1<plugin>
2  <groupId>org.apache.maven.plugins</groupId>
3  <artifactId>maven-invoker-plugin</artifactId>
4  <version>3.2.2</version>
5</plugin>

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

https://maven.apache.org/plugins/maven-invoker-plugin/download.cgi

Release Notes - Maven Invoker Plugin - Version 3.2.2

  • Bugs:

    • MINVOKER-195 - Fast Build Configuration and mirrors in local settings.xml
    • MINVOKER-260 - Option 'streamLogs' does not work properly for logs from intepreter
    • MINVOKER-264 - Errors during maven site build
    • MINVOKER-265 - option 'streamLogs' does not work properly for logs from groovy intepreter
  • New Features:

    • MINVOKER-250 - streamLogsOnFailures - parameter/option
    • MINVOKER-251 - Allow options parallelThreads depends on available cores
    • MINVOKER-255 - support environmentVariable in invokerPropertiesFile
    • MINVOKER-268 - invoker:run skips invocation when the sources are unmodified
  • Improvements:

    • MINVOKER-257 - Test code should meet checkstyle requirements
    • MINVOKER-262 - GitHub Action confirm build on multiple jdk
    • MINVOKER-272 - use Files.createTempDirectory(...) instead of custom code around File.createTempFile(...)
  • Dependency upgrades:

Enjoy,

-The Apache Maven team