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.git


The following commit(s) were added to refs/heads/main by this push:
     new f29a58eb57 ARTEMIS-5847 Jolokia server detector broken
f29a58eb57 is described below

commit f29a58eb57fe855b60e631bccdbef44470d4b590
Author: Justin Bertram <[email protected]>
AuthorDate: Wed Jan 14 10:28:03 2026 -0600

    ARTEMIS-5847 Jolokia server detector broken
    
    Due to the Maven coordinate changes for the new Artemis TLP the
    corresponding Jolokia server detector shipped in artemis-console-war
    1.5.0 is broken. We should force an update to 2.4.3 in the broker to fix
    this.
    
    Later when artemis-console-war has upgraded on its own this change can
    be reverted.
---
 artemis-console/pom.xml | 30 ++++++++++++++++++++++++++++++
 artemis-pom/pom.xml     |  8 ++++++++
 pom.xml                 |  2 ++
 3 files changed, 40 insertions(+)

diff --git a/artemis-console/pom.xml b/artemis-console/pom.xml
index 4e3593f033..33084a0502 100644
--- a/artemis-console/pom.xml
+++ b/artemis-console/pom.xml
@@ -57,6 +57,30 @@
         </exclusion>
       </exclusions>
     </dependency>
+    <dependency>
+      <groupId>org.jolokia</groupId>
+      <artifactId>jolokia-json</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jolokia</groupId>
+      <artifactId>jolokia-server-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jolokia</groupId>
+      <artifactId>jolokia-server-detector</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jolokia</groupId>
+      <artifactId>jolokia-service-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jolokia</groupId>
+      <artifactId>jolokia-service-jsr160</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jolokia</groupId>
+      <artifactId>jolokia-service-serializer</artifactId>
+    </dependency>
   </dependencies>
 
   <build>
@@ -94,6 +118,12 @@
                 <exclude>WEB-INF/lib/error_prone_annotations-*.jar</exclude>
                 <exclude>WEB-INF/lib/j2objc-annotations-*.jar</exclude>
                 <exclude>WEB-INF/classes/log4j2.properties</exclude>
+                <exclude>WEB-INF/lib/jolokia-json-*.jar</exclude>
+                <exclude>WEB-INF/lib/jolokia-server-core-*.jar</exclude>
+                <exclude>WEB-INF/lib/jolokia-server-detector-*.jar</exclude>
+                <exclude>WEB-INF/lib/jolokia-service-jmx-*.jar</exclude>
+                <exclude>WEB-INF/lib/jolokia-service-jsr160-*.jar</exclude>
+                <exclude>WEB-INF/lib/jolokia-service-serializer-*.jar</exclude>
               </excludes>
             </overlay>
           </overlays>
diff --git a/artemis-pom/pom.xml b/artemis-pom/pom.xml
index 88d7d9ac60..c4b2e51411 100644
--- a/artemis-pom/pom.xml
+++ b/artemis-pom/pom.xml
@@ -943,6 +943,14 @@
             <type>pom</type>
             <scope>import</scope>
          </dependency>
+
+         <dependency>
+            <groupId>org.jolokia</groupId>
+            <artifactId>jolokia-bom</artifactId>
+            <version>${jolokia.version}</version>
+            <type>pom</type>
+            <scope>import</scope>
+         </dependency>
       </dependencies>
    </dependencyManagement>
 
diff --git a/pom.xml b/pom.xml
index be561b0f49..a28e713d0b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -204,6 +204,8 @@
 
       <jackson.version>2.20.1</jackson.version>
 
+      <jolokia.version>2.4.3</jolokia.version>
+
       
<activemq.version.versionName>${project.version}</activemq.version.versionName>
       <activemq.version.majorVersion>1</activemq.version.majorVersion>
       <activemq.version.minorVersion>0</activemq.version.minorVersion>


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

Reply via email to