This is an automated email from the ASF dual-hosted git repository.
lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new cb379c2 CAMEL-13183: add support for jandex indexer
cb379c2 is described below
commit cb379c2c59c6e4ba1964b45613ac8a587dedeb9f
Author: lburgazzoli <[email protected]>
AuthorDate: Tue Jul 9 19:59:09 2019 +0200
CAMEL-13183: add support for jandex indexer
---
parent/pom.xml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/parent/pom.xml b/parent/pom.xml
index 57f31d9..a2b10b3 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -424,6 +424,7 @@
<lz4-version>1.6.0</lz4-version>
<!-- needed from tooling/archetypes -->
<!-- use antrun 1.6 as 1.7 fails with finding tools.jar on java on
some platforms -->
+ <jandex-maven-plugin-version>1.0.6</jandex-maven-plugin-version>
<maven-antrun-plugin-version>1.6</maven-antrun-plugin-version>
<maven-archetype-plugin-version>3.0.1</maven-archetype-plugin-version>
<maven-archetype-packaging-version>2.3</maven-archetype-packaging-version>
@@ -5574,6 +5575,19 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin-version}</version>
</plugin>
+ <plugin>
+ <groupId>org.jboss.jandex</groupId>
+ <artifactId>jandex-maven-plugin</artifactId>
+ <version>${jandex-maven-plugin-version}</version>
+ <executions>
+ <execution>
+ <id>make-index</id>
+ <goals>
+ <goal>jandex</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
@@ -5682,6 +5696,10 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.jboss.jandex</groupId>
+ <artifactId>jandex-maven-plugin</artifactId>
+ </plugin>
</plugins>
</build>