Reflections.
Reflections - a Java runtime metadata analysis.
Here is the list of declaration for reflections. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.6</version> </dependency>
If you think this Maven repository POM file listing for reflections is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The reflections-0.9.6 has 9 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Development | guava 10.0 Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. This project is a complete packaging of all the Guava libraries into a single jar. Individual portions of Guava can be used by downloading the ap... | 72 |
File | javassist 3.12.1.GA Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation simple. It is a class library for editing bytecodes in Java. | 63 |
Log | slf4j-api 1.6.1 The slf4j API | 621 |
XML | dom4j 1.6.1 dom4j: the flexible XML framework for Java | 343 |
JSON | gson 1.4 Google Gson library | 10 |
JUnit | junit 4.5 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 385 |
Testing Coding Style | jsr305 1.3.9 JSR305 Annotations for Findbugs | 150 |
The following packages are defined in the reflections-0.9.6.jar
org.reflections org.reflections.adapters org.reflections.scanners org.reflections.serializers org.reflections.util org.reflections.vfs
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.reflections</groupId> <artifactId>reflections-parent</artifactId> <version>0.9.6</version> </parent> <artifactId>reflections</artifactId> <packaging>jar</packaging> <name>Reflections</name> <description>Reflections - a Java runtime metadata analysis</description> <url>http://code.google.com/p/reflections/</url> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>10.0</version> </dependency> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> <version>3.12.1.GA</version> <optional>false</optional> <!-- case: when not actually scanning with javassist or if using {@link Reflections.collect()} --> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> <optional>true</optional> <!-- case: when logging is not needed --> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> <optional>false</optional> <!-- case: when no xml de/serialization --> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>1.4</version> <optional>true</optional> <!-- case: when no json de/serialization --> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> <optional>true</optional> <!-- case: when no servlet environment --> </dependency> <!-- use any implementation you like --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.1</version> <optional>true</optional> <!-- case: when other logging implementation used or logging is not needed --> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>1.3.9</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>