claudio4j commented on code in PR #1161: URL: https://github.com/apache/camel-k-runtime/pull/1161#discussion_r1474394376
########## support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java: ########## @@ -524,23 +525,26 @@ private void addCapabilities(RuntimeSpec.Builder runtimeSpec, CamelCatalogSpec.B artifacts.clear(); artifacts.add(Artifact.from("org.apache.camel.quarkus", "camel-quarkus-management")); artifacts.add(Artifact.from("org.apache.camel.quarkus", "camel-quarkus-jaxb")); - artifacts.add(Artifact.from("org.jolokia", "jolokia-jvm")); - addCapabilityAndDependecies(runtimeSpec, catalogSpec, "jolokia", artifacts, false); + artifacts.add(Artifact.from("org.jolokia", "jolokia-agent-jvm", "javaagent")); Review Comment: jolokia-server-core is not required, I did a test previously, you can try it too: ``` kamel run <sample.java> -t jolokia.enabled=true kubectl port-forward $(kubectl get po -l camel.apache.org/integration -oname) 8778:8778 camel hawtio # add the jmx connection to localhost and jolokia path ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org