Gradle Setup
Add the dependency to your build.gradle
file to get started:
dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.5.0")
}
Feeling Adventurous 💥​
If you're feeling adventurous you can be on the cutting edge and test a snapshot:
repositories {
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.5.0.xx-SNAPSHOT")
}