Skip to content

Commit

Permalink
fix(#2032): Add Maven jandex on camel-kamelets-utils module (#2033)
Browse files Browse the repository at this point in the history
Makes Quarkus runtime properly retrieve the data type transformer implementations (e.g. used in aws-ddb-stream-source Kamelet)
  • Loading branch information
christophd committed May 13, 2024
1 parent a26684e commit c8fc4ee
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions library/camel-kamelets-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit c8fc4ee

Please sign in to comment.