Apache Maven Resources Plugin Version 3.1.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Resources Plugin, Version 3.1.0.

The Resources Plugin handles the copying of project resources to the output directory. There are two different kinds of resources: main resources and test resources. The difference is that the main resources are the resources associated to the main source code while the test resources are associated to the test source code.

Thus, this allows the separation of resources for the main source code and its unit tests.

Important Note:

  • Maven 3.X only
  • JDK 7 minimum requirement

Reporters for this release:

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

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

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

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

Release Notes - Apache Maven Resources Version 3.1.0

Bug:

Improvement:

Tasks:

Dependency upgrades:

Enjoy,

-The Apache Maven team