Skip to content

CraftLib Wiki

Modrinth Downloads Modrinth Version GitHub last commit

About

CraftLib is a utility Library that helps developers have a consistent API even if the Mojang API changes intern. It provides Multi Version Solutions that make the life for multi-version Minecraft mods easier and more Stable

Usage

You can use CraftLib in your Project using the Modrinth Maven Repo.

build.gradle:

repositories {
    exclusiveContent {
        forRepository {
            maven {
                name = "Modrinth"
                url = "https://api.modrinth.com/maven"
            }
        }
        filter {
            includeGroup "maven.modrinth"
        }
    }
}
dependencies {
  modImplementation "maven.modrinth:craftlib:VERSION"
}