Getting Started
Add the repository for Packed Packs.
groovy
repositories {
maven { url = "https://raw.githubusercontent.com/fishstiz/maven/m2" }
}Adding Packed Packs to Dependencies
Fabric (Fabric-Loom)
For 26.1 and above:
groovy
dependencies {
compileOnly "io.github.fishstiz.packed_packs.api:packed_packs_api-fabric:${packed_packs_version}"
localRuntime "io.github.fishstiz.packed_packs:packed_packs-fabric:${packed_packs_version}"
}For 1.21.11 and below:
groovy
dependencies {
modCompileOnly "io.github.fishstiz.packed_packs.api:packed_packs_api-fabric:${packed_packs_version}"
modLocalRuntime "io.github.fishstiz.packed_packs:packed_packs-fabric:${project.packed_packs_version}"
}NeoForge (ModDevGradle)
groovy
configurations {
runtimeClasspath.extendsFrom localRuntime
}
dependencies {
compileOnly "io.github.fishstiz.packed_packs.api:packed_packs_api-neoforge:${packed_packs_version}"
localRuntime "io.github.fishstiz.packed_packs:packed_packs-neoforge:${packed_packs_version}"
}Common
Uses Mojang mappings for 1.21.11 and below.
Can also be used as a compile only dependency for NeoForge and Fabric when using Mojang mappings.
groovy
dependencies {
compileOnly "io.github.fishstiz.packed_packs.api:packed_packs_api-common:${packed_packs_version}"
}Artifacts
| Name | Description |
|---|---|
| packed_packs-fabric | Full Fabric mod that includes the API |
| packed_packs-neoforge | Full NeoForge mod that includes the API |
| packed_packs_api-fabric | Standalone API mod for Fabric, remapped on 1.21.11 and below |
| packed_packs_api-neoforge | Standalone API mod for NeoForge |
| packed_packs_api-common | Non-mod jar, for use with multiloader or Mojang mapping setups. |
Mod ID
Packed Packs: packed_packs
Packed Packs API: packed_packs_api