commit ea9563c324380341578da70ed017bedacff8f43b Author: Emmanuel Benoît Date: Sat Sep 12 11:13:17 2015 +0200 Importing project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..18f4cd9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +/.metadata/* + +/**/.classpath +/**/.project +/**/.settings/ + +/**/log/ +/**/target/ +/**/*.log + +/**/.attach_pid* + +/**/pom.xml.versionsBackup diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..1ae6f98 --- /dev/null +++ b/pom.xml @@ -0,0 +1,128 @@ + + 4.0.0 + + info.ebenoit + ebul-reflection + 0.0.1-SNAPSHOT + E.B.'s utility libraries - Reflection + Various reflection-related utilities, e.g. scanning for annotated members. + https://github.com/tseeker/ebul-reflection + + + + GNU Lesser General Public License, version 3.0 + http://www.gnu.org/licenses/lgpl-3.0.en.html + repo + + + + + + Emmanuel Benoît + http://www.ebenoit.info + ebenoit@ebenoit.info + tseeker + + + + + https://github.com/tseeker/ebul-reflection + scm:git:git://github.com/tseeker/ebul-reflection.git + scm:git:git@github.com:tseeker/ebul-reflection + + + + https://github.com/tseeker/ebul-reflection/issues + GitHub Issues + + + + UTF-8 + github + + + + + + + maven-compiler-plugin + 3.3 + + 1.8 + 1.8 + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + + + jar + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + + jar + + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.2 + + true + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + + + + + com.github.github + site-maven-plugin + 0.12 + + Creating site for ${project.version} + true + + + + + site + + site + + + + + + + + diff --git a/src/main/java/info/ebenoit/ebul/reflection/package-info.java b/src/main/java/info/ebenoit/ebul/reflection/package-info.java new file mode 100644 index 0000000..02e85fb --- /dev/null +++ b/src/main/java/info/ebenoit/ebul/reflection/package-info.java @@ -0,0 +1,7 @@ +/** + * This package contains a few helper classes to deal with various aspects of reflection (recursive look-ups, + * annotations-related helpers, etc.) + * + * @author E. Benoît + */ +package info.ebenoit.ebul.reflection;