feat(plugins): add io.smallrye:jandex-maven-plugin version 3.2.3
All checks were successful
Build, test and publish the Quarkus libraries / build (push) Successful in 2m17s

This commit is contained in:
Jorge Bornhausen 2024-12-14 21:48:09 +01:00
parent 0013789f31
commit 8ca36d0cc0
Signed by: jorge.bornhausen
SSH key fingerprint: SHA256:X2ootOwvCeP4FoNfmVUFIKIbhq95tAgnt7Oqg3x+lfs

14
pom.xml
View file

@ -28,6 +28,7 @@
<spotless-plugin.version>2.43.0</spotless-plugin.version> <spotless-plugin.version>2.43.0</spotless-plugin.version>
<palantir-java-format.version>2.50.0</palantir-java-format.version> <palantir-java-format.version>2.50.0</palantir-java-format.version>
<jacoco-plugin.version>0.8.12</jacoco-plugin.version> <!-- Match with version from Quarkus BOM --> <jacoco-plugin.version>0.8.12</jacoco-plugin.version> <!-- Match with version from Quarkus BOM -->
<jandex-plugin.version>3.2.3</jandex-plugin.version>
<!-- Build properties --> <!-- Build properties -->
<maven.compiler.release>21</maven.compiler.release> <maven.compiler.release>21</maven.compiler.release>
@ -164,6 +165,19 @@
</java> </java>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>io.smallrye</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>${jandex-plugin.version}</version>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>