Apache Maven Assembly Plugin Version 3.1.1 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Assembly Plugin, version 3.1.1.

The Assembly Plugin for Maven is primarily intended to allow users to aggregate the project output along with its dependencies, modules, site documentation, and other files into a single distributable archive.

Note:

  • Maven 3.X only
  • JDK 7 miminum requirement.

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

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

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

Release Notes - Maven Assembly Plugin - Version 3.1.1

Bugs:

  • MASSEMBLY-675 - Maven Assembly packaging wildcard-excluded dependencies
  • MASSEMBLY-762 - Assembly plugin doesn't exclude transitive dependencies when excluded by wildcards in dependencies section
  • MASSEMBLY-799 - Exclusion on wildcard, then the assembly would still package to include the excluded libraries
  • MASSEMBLY-861 - exclusion * also packaged
  • MASSEMBLY-873 - Maven-Assembly-Plugin freezes when building jar-with-dependencies of project depending on org.bouncycastle:bcprov-jdk15on:1.58
  • MASSEMBLY-893 - Typo in FAQ

Tasks:

Dependency upgrades:

Enjoy,

-The Apache Maven team