Skip to content

Getting Started

Add the repository for Packed Packs.

build.gradle
groovy
repositories {
    maven { url = "https://raw.githubusercontent.com/fishstiz/maven/m2" }
}

Adding Packed Packs to Dependencies

Fabric (Fabric-Loom)

For 26.1 and above:

build.gradle
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:

build.gradle
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)

build.gradle
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.

build.gradle
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