Apache Maven

Thursday August 04, 2022

Apache Maven Site Plugin Version 3.12.1 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Site Plugin, version 3.12.1.

The Site Plugin is used to generate a site for the project. The generated site also includes the project's reports that were configured in the POM.

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

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

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

Release Notes - Maven Site Plugin - Version 3.12.1

  • Bug:

    • MSITE-901 - If preceding standalone report has been run, site:jar does not reinvoke site:site
  • Dependency upgrades:

Enjoy,

-The Apache Maven team

Monday July 25, 2022

Apache Maven Resources Plugin Version 3.3.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Resources Plugin, Version 3.3.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.

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.3.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.3.0

  • Bugs:

    • MRESOURCES-237 - Resource plugin's handling of symbolic links changed in 3.0.x, broke existing behavior
    • MRESOURCES-265 - Resource copying not using specified encoding
    • MRESOURCES-268 - java.nio.charset.MalformedInputException: Input length = 1
    • MRESOURCES-269 - Symlinks cause copying resources to fail
    • MRESOURCES-273 - Filtering of Maven properties with long names is not working after transition from 2.6 to 3.2.0
    • MRESOURCES-275 - valid location for directory parameter is always required
  • New Feature:

    • MRESOURCES-250 - Add ability to flatten folder structure into target directory when copying resources
  • Tasks:

  • Dependency upgrades:

Enjoy,

-The Apache Maven team

Apache Maven Site Plugin, version 4.0.0-M3 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Site Plugin, version 4.0.0-M3.

The Site Plugin is used to generate a site for the project. The generated site also includes the project's reports that were configured in the POM.

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

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

1<plugin>
2  <groupId>org.apache.maven.plugins</groupId>
3  <artifactId>maven-site-plugin</artifactId>
4  <version>4.0.0-M3</version>
5</plugin>   

Release Notes - Maven Site Plugin - Version 4.0.0-M3

  • Dependency upgrades:

    • MSITE-905 - Upgrade Doxia and Maven Reporting stack
    • MSITE-906 - Upgrade plugins and components

Enjoy,

-The Apache Maven team

Saturday July 23, 2022

Apache Maven Install Plugin, version 3.0.1 released

The Apache Maven team is pleased to announce the release of the Apache Maven Install Plugin, version 3.0.1.

The Install Plugin is used during the install phase to add artifact(s) to the local repository. The Install Plugin uses the information in the POM (groupId, artifactId, version) to determine the proper location for the artifact within the local repository.

NOTE:

  • Plugin is Java7 level and compatible with Maven 3.2.5+
1<plugin>
2  <groupId>org.apache.maven.plugins</groupId>
3  <artifactId>maven-install-plugin</artifactId>
4  <version>3.0.1</version>
5</plugin>

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

Release Notes - Maven Install Plugin Version 3.0.1

  • Bug:

    • MINSTALL-160 - generatePom=true with 3.0.0-M1 does not generate minimal POM but copies existing one

Enjoy,

-The Apache Maven team

Apache Maven Assembly Plugin, version 3.4.2 released

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

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.

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.4.2</version>
5</plugin>

Release Notes - Maven Assembly Plugin - Version 3.4.2

  • Bug:

    • MASSEMBLY-969 - Excludes filtering in 3.4.0 and 3.4.1 differs from 3.3.0
  • Task:

Enjoy,

-The Apache Maven team

Sunday May 01, 2022

Apache Maven Site Plugin Version 4.0.0-M1 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Site Plugin, version 4.0.0-M1.

The Site Plugin is used to generate a site for the project. The generated site also includes the project’s reports that were configured in the POM.

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

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

1
2
3
4
5
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-site-plugin</artifactId>
  <version>4.0.0-M1</version>
</plugin>

Release Notes – Maven Site Plugin – Version 4.0.0-M1

  • Dependency upgrades:

    • MSITE-892 – Upgrade to Doxia/Doxia Sitetools to 2.0.0-M2
    • MSITE-893 – Upgrade Maven Reporting API to 4.0.0-M1
    • MSITE-894 – Upgrade Maven Reporting Exec to 2.0.0-M1
    • MSITE-895 – Upgrade plugins and components in ITs
    • MSITE-897 – Upgrade Plexus Archiver to 4.2.7
    • MSITE-898 – Upgrade Parent to 36

Enjoy,

-The Apache Maven team

Friday April 22, 2022

Apache Maven AntRun Plugin Version 3.1.0 released

The Apache Maven team is pleased to announce the release of the Apache Maven AntRun Plugin, version 3.1.0.

This plugin provides the ability to run Ant tasks from within Maven. You can even embed your Ant scripts in the POM!

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

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

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

Release Notes – Maven AntRunPlugin – Version 3.1.0

Enjoy,

-The Apache Maven team

Thursday April 21, 2022

Apache Maven EJB Plugin Version 3.2.1 released

The Apache Maven team is pleased to announce the release of the Apache Maven EJB Plugin Version 3.2.1.

This plugin generates J2EE Enterprise Javabean (EJB) file as well as the associated client jar.

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

Release Notes – Apache Maven EJB Plugin – Version 3.2.1

Release Notes – Maven EJB Plugin – Version 3.2.1

Enjoy,

-The Apache Maven team

Apache Maven PDF Plugin Version 1.6.0 released

The Apache Maven team is pleased to announce the release of the Apache Maven PDF Plugin, version 1.6.0.

This plug-in allows you to generate a PDF version of your project’s documentation.

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

Release Notes – Maven PDF Plugin – Version 1.6.0

  • Task:

    • MPDF-100 – Remove remains of org.codehaus.doxia.sink.Sink
  • Dependency upgrades:

    • MPDF-101 – Upgrade Maven to 3.2.5
    • MPDF-102 – Upgrade Maven Plugin Plugin to 3.6.4
    • MPDF-103 – Upgrade plugins in ITs

Enjoy,

-The Apache Maven team

Wednesday April 20, 2022

Apache Maven JavaDoc Plugin Version 3.4.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven JavaDoc Plugin, version 3.4.0.

The Javadoc Plugin uses the Javadoc tool to generate javadocs for the specified project.

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

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

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

Release Notes – Apache Maven JavaDoc Plugin – Version 3.4.0

Enjoy,

-The Apache Maven team

Apache Maven Site Plugin Version 3.12.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Site Plugin, version 3.12.0.

The Site Plugin is used to generate a site for the project. The generated site also includes the project’s reports that were configured in the POM.

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

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

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

Release Notes – Maven Site Plugin – Version 3.12.0

  • Bug:

    • MSITE-857 – Jetty engine fails to resolve web.xml DTD behind corporate proxy
  • Tasks:

  • Dependency upgrades:

Enjoy,

-The Apache Maven team

Thursday April 07, 2022

Apache Maven Artifact Plugin Version 3.3.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Artifact Plugin, version 3.3.0.

The Artifact Plugin is used to manage artifacts tasks.

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

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

Release Notes – Maven Artifact Plugin – Version 3.3.0

Release Notes – Maven Artifact Plugin – Version 3.3.0

  • Bug:

    • MARTIFACT-31 – wrong comparison results when buildinfo has been published to Central
  • New Feature:

    • MARTIFACT-24 – add artifact:check-buildplan goal to check that plugins versions do not have known reproducibility issues

Enjoy,

-The Apache Maven team

Tuesday April 05, 2022

Apache Maven Clean Plugin Version 3.2.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Clean Plugin, version 3.2.0.

The Clean Plugin is used when you want to remove files generated at build-time in a project’s directory.

Important Note:

  • Maven 3.2.5+ only
  • JDK 8 minimum requirement

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

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

Release Notes – Maven Clean Plugin – Version 3.2.0

Release Notes – Maven Clean Plugin – Version 3.2.0

  • New Feature

    • MCLEAN-95 – Provide a fast deletion option
  • Improvements:

    • MCLEAN-89 – Add GitHub Information
    • MCLEAN-90 – Custom search broken on pages rendered using Fluido Skin 1.7
    • MCLEAN-91 – Upgrade maven-plugins to 34
    • MCLEAN-98 – Upgrade maven-plugin parent to 35
  • Tasks:

  • Dependency upgrades:

    • MCLEAN-87 – Upgrade maven-plugins parent to version 32
    • MCLEAN-92 – Require Maven 3.1.1 (drop dependency to Maven 3.0)
    • MCLEAN-96 – Require Maven 3.2.5+

Enjoy,

-The Apache Maven team

Tuesday March 29, 2022

Apache Maven Shade Plugin, Version 3.3.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven Shade Plugin, version 3.3.0.

This plugin provides the capability to package the artifact in an uber-jar, including its dependencies and to shade – i.e. rename – the packages of some of the dependencies.

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

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

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

Release Notes – Maven Shade Plugin – Version 3.3.0

  • Bugs:

    • MSHADE-252 – shadeSourcesContent is broken when combined with partial relocation
    • MSHADE-396 – Improve SourceContent Shading
  • New Feature:

    • MSHADE-36 – Add option to include dependency reduced POM instead of original one
  • Improvements:

    • MSHADE-321 – Always respect ‘createDependencyReducedPom’ flag
    • MSHADE-371 – Update Shade Apache[Notice/LICENSE]ResourceTransformer to use also [NOTICE/LICENSE].md
    • MSHADE-373 – Source transformation on source jar can break OSGi resolution due to duplicated bundle name
    • MSHADE-382 – Add an option to skip execution
    • MSHADE-391 – Do not modify class files, if nothing was relocated
    • MSHADE-405 – ShowOverlapping Uses http instead of https
  • Tasks:

    • MSHADE-389 – Get rid of old baggage
    • MSHADE-390 – Implement Sisu index transformer
    • MSHADE-401 – Improve ServiceResourceTransformer
    • MSHADE-412 – SimpleRelocator can fail in NPE, in particular with manifest transformer
  • Dependency upgrades:

    • MSHADE-379 – Support Java 16 – upgrade ASM to 9.0
    • MSHADE-386 – Update JDependency to 2.6.0
    • MSHADE-407 – Update ASM to 9.2 to support Java 17

Enjoy,

-The Apache Maven team

Sunday March 20, 2022

Apache Maven JXR Plugin Version 3.2.0 Released

The Apache Maven team is pleased to announce the release of the Apache Maven JXR, version 3.2.0.

This module generates browsable HTML pages from Java source code.

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

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

NOTE: Special thanks for the contributions retrieved during the hackathon at JCreate.

Release Notes – Maven JXR – Version 3.2.0

  • Bug:

    • JXR-164 – Full path to local code sources in page title
  • Task:

    • JXR-162 – Lift Minimum Java to Java 8
  • Dependency upgrades:

    • JXR-157 – Upgrade Velocity templating engine
    • JXR-163 – Require Maven 3.2.5+
    • JXR-165 – Upgrade Maven Reporting to 3.1.0
    • JXR-167 – Upgrade Parent to 35
    • JXR-168 – Dependency upgrade and cleanup

Enjoy,

-The Apache Maven team

Calendar

Search

Hot Blogs (today's hits)

Tag Cloud

Categories

Feeds

Links

Navigation