Apache Maven Deploy Plugin Version 3.0.0-M1 Released

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

The deploy plugin is primarily used during the deploy phase, to add your artifact(s) to a remote repository for sharing with other developers and projects. This is usually done in an integration or release environment. It can also be used to deploy a particular artifact (e.g. a third party jar like Sun's non redistributable reference implementations).

Important Note since 3.0.0-M1:

  • Maven 3.X only
  • Minimum JDK 7+
  • The maven-deploy-plugin will generate the needed checksums during the transfer to your remote repository.

Usage Note:

  • Use the maven-deploy-plugin version 3.0.0-M1 only in combintation with the maven-install-plugin version 3.0.0-M1.
1<plugin>
2  <groupId>org.apache.maven.plugins</groupId>
3  <artifactId>maven-deploy-plugin</artifactId>
4  <version>3.0.0-M1</version>
5</plugin>

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

Release Notes - Maven Deploy Plugin Version 3.0.0-M1.

Bugs:

  • MDEPLOY-194 - Deploy SSH external: copy and paste failure in POM snippet comment
  • MDEPLOY-211 - uniqueVersion broken (if not supported, should be removed from doc, and warning printed)
  • MDEPLOY-212 - deploy-file incorrectly deploys attached artifacts
  • MDEPLOY-213 - deploy-file replaces main artifact of a project
  • MDEPLOY-215 - Remove link to non-existing Codehaus wiki

New Feature:

  • MDEPLOY-178 - Use information provided in pom.xml of JAR

Improvements:

Tasks:

Sub-task:

  • MDEPLOY-202 - deploy-file goal insists on deploying source file for previous deploy-file execution

Dependency upgrades:

Enjoy,

-The Apache Maven team

Karl-Heinz Marbaise