Getting started

Install

The easiest way to install MinEE for your maven project is, to checkout the code from github and install it to your local maven repository. git clone https://github.com/thomas-hoer/MinEE.git
mvn install
or download precompiled binaries curl -o minee.jar https://minee-framework.de/download/minee-NIGHTLY.jar
mvn install:install-file -Dfile=minee.jar
Afterwards you can start using it by adding it in your dependencies. <dependency>
    <groupId>com.hoermi</groupId>
    <artifactId>minee</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <scope>compile</scope>
</dependency>