Jandex Maven Plugin Not Generating jandex.idx for Test Classes (v1.0.6)

32 Views Asked by At

I am using below Jandex Maven Plugin to create jandex.ix files for test classes. Jandex Maven Plugin not generating the jandex.idx file for test classes. Ideally after the execution of this plugin

I used below jandex dependency org.jboss jandex 3.1.6 ``

and below plugin for generating jandex.idx file for test classes <plugin> <groupId>org.jboss.jandex</groupId> <artifactId>jandex-maven-plugin</artifactId> <version>1.0.6</version> <executions> <execution> <id>index-test-classes</id> <goals> <goal>jandex</goal> </goals> <phase>test-classes</phase> </execution> </executions> </plugin> Expectation: It should create jandex.idx file under target/test-classes/jandex.idx after plugin execution

0

There are 0 best solutions below