# reflections-maven **Repository Path**: mirrors_ronmamo/reflections-maven ## Basic Information - **Project Name**: reflections-maven - **Description**: Reflections Maven plugin - **Primary Language**: Unknown - **License**: WTFPL - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Reflections Maven plugin ------------------------ #####This project is DISCONTINUED It is [MUCH](http://stackoverflow.com/questions/19813097/is-it-possible-to-use-reflections-maven-to-scan-for-classes-inside-jars-in-web-i) MUCH easier (and sane) to integrate Reflections into your Maven build using gmavenplus-plugin. That is, using a simple Groovy script to instantiate Reflections as you need, without the hassle of using (and writing) a Maven plugin... For example: ```xml org.codehaus.gmavenplus gmavenplus-plugin 1.5 generate-resources execute org.reflections reflections 0.9.10 org.codehaus.groovy groovy-all 2.4.3 runtime ``` Later on, when your project is bootstrapping you can let Reflections collect all those resources and re-create that metadata for you, making it available at runtime without re-scanning the classpath: ```java Reflections reflections = isProduction() ? Reflections.collect() : new Reflections("your.package.here"); ```