This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/artemis-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 31c9fc2  add initial version of a page to reference from release docs 
and relocation warnings, about switching groupId
31c9fc2 is described below

commit 31c9fc25856c41739b8d0aa22d8545c51ea9beeb
Author: Robbie Gemmell <[email protected]>
AuthorDate: Tue Dec 16 15:23:31 2025 +0000

    add initial version of a page to reference from release docs and relocation 
warnings, about switching groupId
---
 src/artemis-tlp-groupid-migration.md | 37 ++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/src/artemis-tlp-groupid-migration.md 
b/src/artemis-tlp-groupid-migration.md
new file mode 100644
index 0000000..7c920d7
--- /dev/null
+++ b/src/artemis-tlp-groupid-migration.md
@@ -0,0 +1,37 @@
+---
+layout: default_md
+title: Apache Artemis TLP GroupId Migration
+title-class: page-title-artemis
+type: artemis
+---
+
+With the move for Artemis to become an independent Apache project, the Maven 
groupId for Apache Artemis modules is changing from _org.apache.activemq_ over 
to _org.apache.artemis_ beginning with the Apache Artemis 2.50.0 release.
+
+## Dependency Update Example
+
+For example, if you used the following dependency declaration in your build:
+```xml
+    <dependency>
+       <groupId>org.apache.activemq</groupId>
+       <artifactId>artemis-jms-client</artifactId>
+       <version>2.50.0</version>
+    </dependency>
+```
+It should have its groupId updated to instead become:
+```xml
+    <dependency>
+       <groupId>org.apache.artemis</groupId>
+       <artifactId>artemis-jms-client</artifactId>
+       <version>2.50.0</version>
+    </dependency>
+```
+## Relocation POMs
+
+Relocation POM files are being published to the old _org.apache.activemq_ 
module locations for a period to allow most usage to continue working even with 
the old groupId whilst you migrate over.
+For example, if you were still using 
org.apache.activemq:artemis-jms-client:2.50.0 you would expect to see something 
like below in your Maven build logs, which could be the very reason you are 
reading this web page:
+
+```
+[WARNING] The artifact org.apache.activemq:artemis-jms-client:jar:2.50.0 has 
been relocated to
+org.apache.artemis:artemis-jms-client:jar:2.50.0: Update the groupId in your 
project build file.
+Refer to https://artemis.apache.org/artemis-tlp-groupid-migration for more 
information.
+```


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to