Installation
Adding Dependency
In order to use Crate you will need to download it using a BuildTool like Maven or Gradle.
Gradle Kotlin
Add Repository
build.gradle.kts
repositories {
mavenCentral()
}
Add Dependency
build.gradle.kts
dependencies {
implementation("io.github.milkdrinkers:crate:VERSION")
}
Shade Dependency
build.gradle.kts
plugins {
id("com.gradleup.shadow") version "8.3.6"
}
tasks {
shadowJar {
relocate("io.github.milkdrinkers.Crate", "yourpackage.yourname.crate")
}
}
What now?
Crate should now be available for use in your project.
For further reading I strongly recommend:
Last updated on