This library provides methods around Java Reflection.
Here is the list of declaration for mirage. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.daveayan</groupId> <artifactId>mirage</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for mirage is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT License
URL: http://www.opensource.org/licenses/mit-license.
The mirage-1.0 has 3 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 r09 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 ... | 65 |
Data Structure | commons-lang 2.3 Commons.Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 132 |
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 packages are defined in the mirage-1.0.jar
daveayan.mirage daveayan.mirage.comparator daveayan.mirage.comparator.impl
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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.daveayan</groupId> <artifactId>mirage</artifactId> <version>1.0</version> <packaging>jar</packaging> <description> This library provides methods around Java Reflection </description> <url>https://github.com/daveayan/mirage</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/daveayan/mirage.git</connection> <developerConnection>scm:git:git@github.com:daveayan/mirage.git</developerConnection> <url>git://github.com/daveayan/mirage.git</url> <tag>HEAD</tag> </scm> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>r09</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>