org.jboss.errai.reflections.maven.plugin
Class ReflectionsMojo

java.lang.Object
  extended by org.jfrog.jade.plugins.common.injectable.MvnInjectableSupport
      extended by org.jfrog.jade.plugins.common.injectable.MvnInjectableMojoSupport
          extended by org.jboss.errai.reflections.maven.plugin.ReflectionsMojo
All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo, org.jfrog.jade.plugins.common.injectable.MvnInjectable

public class ReflectionsMojo
extends org.jfrog.jade.plugins.common.injectable.MvnInjectableMojoSupport

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 or whatever the version might be</version>
               <executions>
                   <execution>
                       <goals>
                           <goal>reflections</goal>
                       </goals>
                       <phase>process-classes</phase>
                   </execution>
               </executions>
               <configuration>
                  <... optional configuration here>
               </configuration>
           </plugin>
       </plugins>
   </build>