Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.36 KB

README.md

File metadata and controls

33 lines (26 loc) · 1.36 KB

pinlib

Modrinth GitHub release (latest by SemVer including pre-releases) GitHub release (latest by SemVer including pre-releases)

A lightweight minecraft library to add map icons and markers for fabric mod loader.

Modrinth Page

How to add to your build.gradle

You can add the mod to your build.gradle file with 2 ways.

repositories {
    // Your repositories...
    maven {
        name = "Modrinth"
        url = "https://api.modrinth.com/maven"
        content {
            includeGroup "maven.modrinth"
        }
    }
}

dependencies {
    // Your dependencies....
    modApi "maven.modrinth:pinlib:<VERSION>"
}

See dependency scope to know the difference between modImplementation, modApi and include.