A collection of utilities for working with reflection in Java.
The latest source code can be found here on GitHub. If you are using Git, you can use the following command to clone the project: git clone https://github.com/Epoxide-Software/MirrorPool
##Building from Source
This project can be built using the Gradle Wrapper included in the repository. When the gradlew build
command is executed from within the repo directory, a compiled JAR will be created in ~/build/libs
. Sources and Javadocs will also be generated in the same directory.
##Quick Start TODO add a quickstart
##Dependency Management
If you are using Maven to manage your dependencies. Add the following into your pom.xml
file. Make sure to update the version from time to time.
<repositories>
<repository>
<id>epoxide.xyz</id>
<url>http://maven.epoxide.xyz</url>
</repository>
</repositories>
<dependency>
<groupId>xyz.epoxide.mirrorpool</groupId>
<artifactId>MirrorPool</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
If you are using Gradle to manage your dependencies, add the following into your build.gradle
file. Make sure to update the version from time to time.
repositories {
maven {
url 'http://maven.epoxide.xyz'
}
}
dependencies {
compile "xyz.epoxide.mirrorpool:MirrorPool:1.0-SNAPSHOT"
}
##Legal Information
MirrorPool is licensed under the LGPL2.1. Please see the LICENSE
for more details.
##Credits