This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 3.27.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 91f94d52cfdfc05c8b918c6abd632b269a0afd1e Author: James Netherton <[email protected]> AuthorDate: Thu Oct 30 11:57:04 2025 +0000 Switch to io.smallrye jandex-maven-plugin --- .github/dependabot.yml | 2 ++ integration-tests-support/certificate-generator/pom.xml | 2 +- integration-tests-support/custom-dataformat/pom.xml | 2 +- integration-tests-support/http/pom.xml | 2 +- integration-tests-support/kafka/pom.xml | 2 +- integration-tests-support/messaging/pom.xml | 2 +- integration-tests/infinispan-common/pom.xml | 2 +- pom.xml | 2 +- poms/build-parent/pom.xml | 2 +- 9 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9b03625932..74e75ebb25 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -61,6 +61,8 @@ updates: # Maven plugins # Quarkus is upgraded manually - dependency-name: "io.quarkus:quarkus-*-maven-plugin" + # Automatically aligned with the Quarkus Jandex version + - dependency-name: "io.smallrye:jandex-maven-plugin" # Camel is upgraded manually - dependency-name: "org.apache.camel.maven:*" # To be kept manually in alignment with the enforcer API version used in quarkus-enforcer-rules diff --git a/integration-tests-support/certificate-generator/pom.xml b/integration-tests-support/certificate-generator/pom.xml index d254a00300..a700163d26 100644 --- a/integration-tests-support/certificate-generator/pom.xml +++ b/integration-tests-support/certificate-generator/pom.xml @@ -58,7 +58,7 @@ <build> <plugins> <plugin> - <groupId>org.jboss.jandex</groupId> + <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> <executions> <execution> diff --git a/integration-tests-support/custom-dataformat/pom.xml b/integration-tests-support/custom-dataformat/pom.xml index 63659fa01f..1bf2a7d6a3 100644 --- a/integration-tests-support/custom-dataformat/pom.xml +++ b/integration-tests-support/custom-dataformat/pom.xml @@ -40,7 +40,7 @@ <build> <plugins> <plugin> - <groupId>org.jboss.jandex</groupId> + <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> <executions> <execution> diff --git a/integration-tests-support/http/pom.xml b/integration-tests-support/http/pom.xml index d6882daacc..50dc162f42 100644 --- a/integration-tests-support/http/pom.xml +++ b/integration-tests-support/http/pom.xml @@ -65,7 +65,7 @@ <build> <plugins> <plugin> - <groupId>org.jboss.jandex</groupId> + <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> <executions> <execution> diff --git a/integration-tests-support/kafka/pom.xml b/integration-tests-support/kafka/pom.xml index 6bf7ed721d..8bc87fef49 100644 --- a/integration-tests-support/kafka/pom.xml +++ b/integration-tests-support/kafka/pom.xml @@ -57,7 +57,7 @@ <build> <plugins> <plugin> - <groupId>org.jboss.jandex</groupId> + <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> <executions> <execution> diff --git a/integration-tests-support/messaging/pom.xml b/integration-tests-support/messaging/pom.xml index c7f838a085..e1888f2e0c 100644 --- a/integration-tests-support/messaging/pom.xml +++ b/integration-tests-support/messaging/pom.xml @@ -40,7 +40,7 @@ <build> <plugins> <plugin> - <groupId>org.jboss.jandex</groupId> + <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> <executions> <execution> diff --git a/integration-tests/infinispan-common/pom.xml b/integration-tests/infinispan-common/pom.xml index 2393ca5337..f72a964ba0 100644 --- a/integration-tests/infinispan-common/pom.xml +++ b/integration-tests/infinispan-common/pom.xml @@ -88,7 +88,7 @@ <build> <plugins> <plugin> - <groupId>org.jboss.jandex</groupId> + <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> <executions> <execution> diff --git a/pom.xml b/pom.xml index 968cf193ad..deee437177 100644 --- a/pom.xml +++ b/pom.xml @@ -200,7 +200,7 @@ <formatter-maven-plugin.version>2.29.0</formatter-maven-plugin.version> <gmavenplus-maven-plugin.version>3.0.0</gmavenplus-maven-plugin.version> <impsort-maven-plugin.version>1.12.0</impsort-maven-plugin.version> - <jandex-maven-plugin.version>1.2.3</jandex-maven-plugin.version> + <jandex-maven-plugin.version>3.4.0</jandex-maven-plugin.version><!-- @sync io.quarkus:quarkus-build-parent:${quarkus.version} prop:jandex.version --> <keytool-maven-plugin.version>1.7</keytool-maven-plugin.version> <license-maven-plugin.version>5.0.0</license-maven-plugin.version> <maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version> diff --git a/poms/build-parent/pom.xml b/poms/build-parent/pom.xml index 5546da11fe..b0c7aa5d82 100644 --- a/poms/build-parent/pom.xml +++ b/poms/build-parent/pom.xml @@ -91,7 +91,7 @@ <version>${build-helper-maven-plugin.version}</version> </plugin> <plugin> - <groupId>org.jboss.jandex</groupId> + <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> <version>${jandex-maven-plugin.version}</version> </plugin>
