Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.9 KB

README.md

File metadata and controls

52 lines (40 loc) · 1.9 KB

MirrorPool

A collection of utilities for working with reflection in Java.

Source Code

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

  • Darkhax - Maintainer of MirrorPool.
  • lclc98 - Maintainer of the build server.
  • badtrash - Inspiration for dynamic enum utilities.