Guide to relocation
Sometimes it is necessary to relocate artifacts in the repository. One example of that is when a project moves from one groupId to a different groupId.
Making changes to the repository can have far reaching consequences. So it is best to get it right the first time, hence this guide.
2020 rework in progress, see discussion on dev mailing list, still need analysis of issues, definition of improvements, and of course implementation...
How to relocate a Maven 2 artifact to a different groupId
The goal of the example below is for the foo
project to relocate its groupId from bar
to org.bar
.
Working on past versions
- Copy all
foo
-related files from/bar/foo/
in your Maven 2 repository to a temporary location. - Change the groupId to
org.bar
in allfoo
-related POM files in the temporary location. - Copy all files from the temporary location to
/org/bar/foo/
in your Maven 2 repository. - Create a minimal Maven 2 POM file for every old release of
foo
in your Maven 2 repository. The POM files only need to includegroupId
,artifactId
,version
and the relocation section.Note: Before you replace your old POM files in
/bar/foo/
with these minimal POM files, make sure you have made backups!The minimal POM file might look like this for version 1.0 of
foo
:<project> <modelVersion>4.0.0</modelVersion> <groupId>bar</groupId> <artifactId>foo</artifactId> <version>1.0</version> <distributionManagement> <relocation> <groupId>org.bar</groupId> </relocation> </distributionManagement> </project>
In this case we are relocating because the groupId has changed. We only need to add the element that has changed to the
relocation
element. For information on which elements are allowed in therelocation
element, see the POM reference. - If your project uses MD5 or SHA1 checksums you must now create new checksums for the pom files in
/bar/foo/
in your Maven 2 repository. If the POM file needs to be signed, do that as well. - If your project syncs with Central, you should now initiate that sync. This might happen automatically depending on your projects sync policy.
Your foo
-artifacts are now available to Maven users with both the old and the new groupId. Projects using the old groupId will automatically be redirected to the new groupId and a warning telling the user to update their dependencies will be issued.
Releasing the next version
When the next release of foo
is made, you should publish two Maven 2 POM files: first you should publish foo
's POM with the new groupId org.bar
.
Because data in the repository is not supposed to change, Maven doesn't download POM files that it has already downloaded. Therefore you will also need to publish a relocation POM file with the old groupId bar
for the new version: this should be a minimal relocation POM (as described in step 4 above), but for the new version of foo
.
For the release after that, you only need to publish a Maven POM with a groupId of org.bar
, since users of the previous version have been informed of the changed groupId.
Examples
Apache Ant
- has published its releases until 1.6.5 to Maven 1-compliant
ant:ant
coordinates (see repository content), - starting with 1.7.0, moved to reverse-DNS compliant Maven 2+
org.apache.ant:ant
coordinates, (see repository content), - published one
ant:ant:1.7.0
relocation POM in old groupId to advertise about the move (see repository content).
Notice that past ant:ant
versions POMs (until 1.6.5) have not been modified to advertise about the move: Central POM content is not expected to be changed once published (because initial content has been downloaded many times and is not expected to be re-loaded later).
Apache POI
- has published its releases until 3.0-alpha-3 to Maven 1-compliant
poi:poi
coordinates (see repository content), - starting with 3.0-FINAL, moved to reverse-DNS compliant Maven 2+
org.apache.poi:poi
coordinates, (see repository content), - published
poi:poi:3.0-FINAL
relocation POM with jars in old groupId to advertise about the move (see repository content). - published
poi:poi
relocation POMs for 3.0.1-FINAL, 3.0.2-beta1/beta2/FINAL and 3.1-beta1/beta2/FINAL in old groupId to advertise about the move (see repository content).
Testing
Using pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>relocation-test</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version><!-- https://repo.maven.apache.org/maven2/ant/ant/1.7.0/ -->
</dependency>
<dependency>
<groupId>poi</groupId>
<artifactId>poi</artifactId>
<version>3.0-FINAL</version><!-- https://repo.maven.apache.org/maven2/poi/poi/3.0-FINAL/ -->
</dependency>
</dependencies>
</project>
Dependency resolution of these relocated artifacts follows to the new relocated coordinates, issuing a warning:
$ mvn dependency:list dependency:tree [INFO] Scanning for projects... [INFO] [INFO] ------------------------< test:relocation-test >------------------------ [INFO] Building relocation-test 1.0-SNAPSHOT [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [WARNING] The artifact ant:ant:jar:1.7.0 has been relocated to org.apache.ant:ant:jar:1.7.0 [WARNING] The artifact poi:poi:jar:3.0-FINAL has been relocated to org.apache.poi:poi:jar:3.0-FINAL [INFO] [INFO] --- dependency:3.6.0:list (default-cli) @ relocation-test --- [INFO] [INFO] The following files have been resolved: [INFO] org.apache.ant:ant:jar:1.7.0:compile -- module ant (auto) [INFO] org.apache.ant:ant-launcher:jar:1.7.0:compile -- module ant.launcher (auto) [INFO] org.apache.poi:poi:jar:3.0-FINAL:compile -- module poi (auto) [INFO] commons-logging:commons-logging:jar:1.1:compile -- module commons.logging (auto) [INFO] log4j:log4j:jar:1.2.13:compile -- module log4j (auto) [INFO] [INFO] [INFO] --- dependency:3.6.0:tree (default-cli) @ relocation-test --- [WARNING] The artifact ant:ant:jar:1.7.0 has been relocated to org.apache.ant:ant:jar:1.7.0 [WARNING] The artifact poi:poi:jar:3.0-FINAL has been relocated to org.apache.poi:poi:jar:3.0-FINAL [INFO] test:relocation-test:jar:1.0-SNAPSHOT [INFO] +- org.apache.ant:ant:jar:1.7.0:compile [INFO] | \- org.apache.ant:ant-launcher:jar:1.7.0:compile [INFO] \- org.apache.poi:poi:jar:3.0-FINAL:compile [INFO] +- commons-logging:commons-logging:jar:1.1:compile [INFO] \- log4j:log4j:jar:1.2.13:compile [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------