Crate
Installation

Installation

Adding Dependency

In order to use Crate you will need to download it using a BuildTool like Maven or Gradle.

Add Repository

repositories {
    maven("https://jitpack.io")
}

Add Dependency

dependencies {
    implementation("com.github.milkdrinkers:crate:VERSION")
}

Shade Dependency

plugins {
    id("com.github.johnrengelman.shadow") version "8.1.1"
}
 
tasks {
    shadowJar {
        relocate("com.github.milkdrinkers.Crate", "yourpackage.yourname.crate")
    }
}

What now?

Crate should now be available for use in your project.

For further reading I strongly recommend: