|
ReflectionsMojo
Reflections Mojo with empty configuration: <build>
<plugins>
<plugin>
<groupId>org.reflections</groupId>
<artifactId>reflections-maven</artifactId>
<version>0.9 or whatever the version might be</version>
<executions>
<execution>
<goals>
<goal>reflections</goal>
</goals>
<phase>process-classes</phase>
<configuration>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>Available configuration parameters:
description: a comma separated list of scanner classes. default value: ClassAnnotationsScanner, SubTypesScanner
description: a comma separated list of include exclude filters. default value: "-java., -javax., -sun., -com.sun."that is, exclude common java jre classes
description: a comma separated list of destinations to save metadata to default value: "${project.build.outputDirectory}/META-INF/reflections/${project.artifactId}-reflections.xml" |
Sign in to add a comment