├── .gitignore ├── COPYING.txt ├── README.md ├── pom.xml └── src └── main └── java └── org └── reflections └── maven └── plugin ├── MavenLogAdapter.java └── ReflectionsMojo.java /.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .project 3 | /.settings/ 4 | /target/ 5 | -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronmamo/reflections-maven/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronmamo/reflections-maven/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronmamo/reflections-maven/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/reflections/maven/plugin/MavenLogAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronmamo/reflections-maven/HEAD/src/main/java/org/reflections/maven/plugin/MavenLogAdapter.java -------------------------------------------------------------------------------- /src/main/java/org/reflections/maven/plugin/ReflectionsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronmamo/reflections-maven/HEAD/src/main/java/org/reflections/maven/plugin/ReflectionsMojo.java --------------------------------------------------------------------------------