This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 4.1.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 665e00ad89d70351ccc73f296115a6c9fae0cc62 Author: Andriy Redko <[email protected]> AuthorDate: Fri Feb 6 08:12:15 2026 -0500 Switch group from org.apache.activemq to org.apache.artemis for ActiveMQ Artemis artifacts (#2867) (cherry picked from commit 3db651449ead313e80a704937625a93bae782877) --- distribution/javadoc/pom.xml | 2 +- distribution/src/main/release/samples/java_first_jms/pom.xml | 2 +- distribution/src/main/release/samples/jms_pubsub/pom.xml | 2 +- distribution/src/main/release/samples/jms_queue/pom.xml | 2 +- distribution/src/main/release/samples/jms_spec_demo/pom.xml | 2 +- distribution/src/main/release/samples/jms_spring_config/pom.xml | 2 +- parent/pom.xml | 8 ++++---- rt/transports/jms/pom.xml | 6 +++--- services/wsn/wsn-core/pom.xml | 4 ++-- systests/jaxrs/pom.xml | 2 +- systests/transport-jms/pom.xml | 4 ++-- systests/uncategorized/pom.xml | 2 +- systests/ws-specs/pom.xml | 2 +- testutils/pom.xml | 2 +- 14 files changed, 21 insertions(+), 21 deletions(-) diff --git a/distribution/javadoc/pom.xml b/distribution/javadoc/pom.xml index 57a14640cf..1ca3e98860 100644 --- a/distribution/javadoc/pom.xml +++ b/distribution/javadoc/pom.xml @@ -192,7 +192,7 @@ <version>${cxf.hazelcast.version}</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> </dependency> <dependency> diff --git a/distribution/src/main/release/samples/java_first_jms/pom.xml b/distribution/src/main/release/samples/java_first_jms/pom.xml index b9f6b27b8b..21cf53af4d 100644 --- a/distribution/src/main/release/samples/java_first_jms/pom.xml +++ b/distribution/src/main/release/samples/java_first_jms/pom.xml @@ -91,7 +91,7 @@ </profiles> <dependencies> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> </dependency> <dependency> diff --git a/distribution/src/main/release/samples/jms_pubsub/pom.xml b/distribution/src/main/release/samples/jms_pubsub/pom.xml index ac26e41f41..d3d74d9c1a 100644 --- a/distribution/src/main/release/samples/jms_pubsub/pom.xml +++ b/distribution/src/main/release/samples/jms_pubsub/pom.xml @@ -143,7 +143,7 @@ <artifactId>cxf-rt-transports-jms</artifactId> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> </dependency> </dependencies> diff --git a/distribution/src/main/release/samples/jms_queue/pom.xml b/distribution/src/main/release/samples/jms_queue/pom.xml index e68775fc89..6f08ab16e3 100644 --- a/distribution/src/main/release/samples/jms_queue/pom.xml +++ b/distribution/src/main/release/samples/jms_queue/pom.xml @@ -145,7 +145,7 @@ <version>4.1.5-SNAPSHOT</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> </dependency> </dependencies> diff --git a/distribution/src/main/release/samples/jms_spec_demo/pom.xml b/distribution/src/main/release/samples/jms_spec_demo/pom.xml index adbb3795d5..043c5f7dec 100644 --- a/distribution/src/main/release/samples/jms_spec_demo/pom.xml +++ b/distribution/src/main/release/samples/jms_spec_demo/pom.xml @@ -145,7 +145,7 @@ <version>4.1.5-SNAPSHOT</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> </dependency> </dependencies> diff --git a/distribution/src/main/release/samples/jms_spring_config/pom.xml b/distribution/src/main/release/samples/jms_spring_config/pom.xml index e618031852..6189b7d4df 100644 --- a/distribution/src/main/release/samples/jms_spring_config/pom.xml +++ b/distribution/src/main/release/samples/jms_spring_config/pom.xml @@ -167,7 +167,7 @@ <scope>compile</scope> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> </dependency> </dependencies> diff --git a/parent/pom.xml b/parent/pom.xml index 40a94f1a36..97f2071380 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -1742,22 +1742,22 @@ <version>${cxf.jakarta.ejb.version}</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> <version>${cxf.activemq.artemis.version}</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-client</artifactId> <version>${cxf.activemq.artemis.version}</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-ra</artifactId> <version>${cxf.activemq.artemis.version}</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-junit</artifactId> <version>${cxf.activemq.artemis.version}</version> <scope>test</scope> diff --git a/rt/transports/jms/pom.xml b/rt/transports/jms/pom.xml index 7a19929b40..3317888eaf 100644 --- a/rt/transports/jms/pom.xml +++ b/rt/transports/jms/pom.xml @@ -103,17 +103,17 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> <scope>test</scope> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-ra</artifactId> <scope>test</scope> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-junit</artifactId> <scope>test</scope> </dependency> diff --git a/services/wsn/wsn-core/pom.xml b/services/wsn/wsn-core/pom.xml index 0011d5186c..97011314c6 100644 --- a/services/wsn/wsn-core/pom.xml +++ b/services/wsn/wsn-core/pom.xml @@ -46,7 +46,7 @@ <artifactId>jakarta.xml.ws-api</artifactId> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> </dependency> <dependency> @@ -121,7 +121,7 @@ </exclusions> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-junit</artifactId> <scope>test</scope> </dependency> diff --git a/systests/jaxrs/pom.xml b/systests/jaxrs/pom.xml index 6ea582347f..23c5cff894 100644 --- a/systests/jaxrs/pom.xml +++ b/systests/jaxrs/pom.xml @@ -201,7 +201,7 @@ <version>${project.version}</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> <scope>test</scope> <exclusions> diff --git a/systests/transport-jms/pom.xml b/systests/transport-jms/pom.xml index bf6fab789a..cc95e45b0f 100644 --- a/systests/transport-jms/pom.xml +++ b/systests/transport-jms/pom.xml @@ -225,12 +225,12 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> <scope>test</scope> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-junit</artifactId> <scope>test</scope> </dependency> diff --git a/systests/uncategorized/pom.xml b/systests/uncategorized/pom.xml index 01941103f8..00403c8932 100644 --- a/systests/uncategorized/pom.xml +++ b/systests/uncategorized/pom.xml @@ -299,7 +299,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> <scope>test</scope> </dependency> diff --git a/systests/ws-specs/pom.xml b/systests/ws-specs/pom.xml index e3e063ca93..6e3d9ea590 100644 --- a/systests/ws-specs/pom.xml +++ b/systests/ws-specs/pom.xml @@ -124,7 +124,7 @@ <optional>true</optional> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> <scope>test</scope> </dependency> diff --git a/testutils/pom.xml b/testutils/pom.xml index 879c72865c..d40c07dee6 100644 --- a/testutils/pom.xml +++ b/testutils/pom.xml @@ -70,7 +70,7 @@ <version>${project.version}</version> </dependency> <dependency> - <groupId>org.apache.activemq</groupId> + <groupId>org.apache.artemis</groupId> <artifactId>artemis-jakarta-server</artifactId> <scope>provided</scope> <optional>true</optional>
