A collection of tools for testing and developing mods and modpacks.
This project is currently using CurseForge's Maven. This may change in the future. To add this project as a dependency using gradle, add the following repository to the repository list. Alternatively, you can use JitPack which is a bit more thought out that Curse's maven system.
repositories {
maven {
name = "CurseForge"
url = "https://minecraft.curseforge.com/api/maven/"
}
}
Once you have the repo added to your list, you can pull the library by adding the following to your dependencies.
compile "caliper:Caliper:1.11.2:1.0.+"
To explain Curse's maven system, the first bit is the slug for the project (The name in the url), and then add the name of the file you want but replace all dashes with colons. That's the gist of it at least.