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.5</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.5 has 10 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 r08 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 ... | 38 |
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 |
The following table lists the most popular artifacts which are depending on reflections-0.9.5. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | ads-lib 1.0.0 Java client library for accessing ads APIs including AdWords, DFA, and DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use AdWords with Axis, you should include the "adwords-axis... | 5 |
The following packages are defined in the reflections-0.9.5.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.5</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>r08</version> </dependency> <!-- actually needed only when scanning is done. if using {@link Reflections.collect()} javassist is not needed --> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> <version>3.12.1.GA</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> </dependency> <!-- effectively needed when XmlSerializer is used --> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> <!--<scope>runtime</scope>--> <!--<optional>true</optional>--> </dependency> <!-- effectively needed when JsonSerializer is used --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>1.4</version> <!--<scope>runtime</scope>--> <optional>true</optional> </dependency> <!-- effectively needed when using JBoss6UrlType --> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-vfs</artifactId> <version>3.0.0.CR5</version> <!--<scope>runtime</scope>--> <optional>true</optional> </dependency> <!-- effectively might be needed for war environments --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> <optional>true</optional> </dependency> <!-- use any implementation you like --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.1</version> <optional>true</optional> </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.7</version> <scope>test</scope> <optional>true</optional> </dependency> </dependencies> </project>