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

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


The following commit(s) were added to refs/heads/main by this push:
     new c8fc4eea fix(#2032): Add Maven jandex on camel-kamelets-utils module 
(#2033)
c8fc4eea is described below

commit c8fc4eea90a56c5ba8128b1363db323a9c8ceeb2
Author: Christoph Deppisch <cdeppi...@redhat.com>
AuthorDate: Mon May 13 06:24:39 2024 +0200

    fix(#2032): Add Maven jandex on camel-kamelets-utils module (#2033)
    
    Makes Quarkus runtime properly retrieve the data type transformer 
implementations (e.g. used in aws-ddb-stream-source Kamelet)
---
 library/camel-kamelets-utils/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/library/camel-kamelets-utils/pom.xml 
b/library/camel-kamelets-utils/pom.xml
index 5363a839..60d1fa51 100644
--- a/library/camel-kamelets-utils/pom.xml
+++ b/library/camel-kamelets-utils/pom.xml
@@ -142,4 +142,21 @@
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jboss.jandex</groupId>
+                <artifactId>jandex-maven-plugin</artifactId>
+                <version>1.2.3</version>
+                <executions>
+                    <execution>
+                        <id>make-index</id>
+                        <goals>
+                            <goal>jandex</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 </project>

Reply via email to