You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2022/10/19 10:09:59 UTC

[camel-k-runtime] branch main updated: Set jolokia dependency in camel-k-runtime-bom to avoid declaring the dependency in camel-k

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

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/main by this push:
     new 39682b05 Set jolokia dependency in camel-k-runtime-bom to avoid declaring the dependency in camel-k
39682b05 is described below

commit 39682b0577eff455345723eda1f42707145b1974
Author: Claudio Miranda <cl...@claudius.com.br>
AuthorDate: Fri Oct 14 17:22:18 2022 -0300

    Set jolokia dependency in camel-k-runtime-bom to avoid declaring the dependency in camel-k
---
 support/camel-k-runtime-bom/pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/support/camel-k-runtime-bom/pom.xml b/support/camel-k-runtime-bom/pom.xml
index aa6099ab..662ae0ac 100644
--- a/support/camel-k-runtime-bom/pom.xml
+++ b/support/camel-k-runtime-bom/pom.xml
@@ -35,7 +35,7 @@
     <properties>
         <!-- reproduceable builds: https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
         <project.build.outputTimestamp>1664443789</project.build.outputTimestamp>
-
+        <jolokia-version>1.7.1</jolokia-version>
         <maven-enforcer-plugin-version>3.1.0</maven-enforcer-plugin-version>
         <maven-version>3.6.3</maven-version>
         <quarkus-platform-version>2.13.0.Final</quarkus-platform-version>
@@ -215,6 +215,11 @@
                 <artifactId>camel-k-resume-kafka</artifactId>
                 <version>${project.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.jolokia</groupId>
+                <artifactId>jolokia-jvm</artifactId>
+                <version>${jolokia-version}</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>