Requirement: Minecraft 1.16.5 - 1.21, Fabric Loader 0.11.6, Forge 36.1.32
Modrinth: https://modrinth.com/mod/inventory-profiles-next
CurseForge: https://www.curseforge.com/minecraft/mc-mods/inventory-profiles-next
Gradle examples are in kotlin DSL. Although currently there is no difference between fabric and forge APIs this is not a guarantee, we advise you to add dependency on the proper loader version.
repositories {
maven {
name = "IPN-Releases"
mavenContent {
releasesOnly()
}
content {
includeGroup("org.anti_ad.mc")
includeGroup("ca.solo-studios")
}
url = uri("https://maven.ipn-mod.org/releases")
}
}
dependencies {
compileOnly(group = "org.anti-ad.mc",
name = "InventoryProfilesNext-fabric-1.21",
version = "2.0.1")
// for libIPN usually you don't need it
compileOnly(group = "org.anti-ad.mc",
name = "libIPN-fabric-1.21",
version = "5.0.1",
classifier = "dev")
}
dependencies {
compileOnly(group = "org.anti-ad.mc",
name = "InventoryProfilesNext-forge-1.21",
version = "2.0.1")
// for libIPN usually you don't need it
compileOnly(group = "org.anti-ad.mc",
name = "libIPN-forge-1.21",
version = "5.0.1",
classifier = "dev")
}
Who uses maven still :D
- learn Kotlin
- learn about Minecraft modding :)