| ReflectionsMojo |
maven plugin for Reflections
use it by configuring the pom with:
<build>
<plugins>
<plugin>
<groupId>org.reflections</groupId>
<artifactId>reflections-maven</artifactId>
<version>0.9.5</version>
<executions>
<execution>
<goals>
<goal>reflections</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
<configuration>
<... optional configuration here>
</configuration>
</plugin>
</plugins>
</build>
configurations:
scanners - a comma separated list of scanner classes names (fully qualified names or simple names). |