Skip to content
/ pack Public

Minecraft resource pack generator.

License

Notifications You must be signed in to change notification settings

Infumia/pack

Repository files navigation

pack

Maven Central Version

How to Use (Developers)

Gradle

repositories {
    mavenCentral()
}

dependencies {
    // Base module
    implementation "net.infumia:pack:VERSION"
    // Required, https://mvnrepository.com/artifact/net.kyori/adventure-api/
    implementation "net.kyori:adventure-api:4.17.0"
    // Required, https://mvnrepository.com/artifact/team.unnamed/creative-api/
    implementation "team.unnamed:creative-api:1.7.2"

    // Blank Slot (Optional)
    implementation "net.infumia:pack-blank:VERSION"

    // Language (Optional)
    implementation "net.infumia:pack-language:VERSION"

    // Generator (Optional)
    implementation "net.infumia:pack-generator:VERSION"
    // Required, https://mvnrepository.com/artifact/team.unnamed/team.unnamed:creative-serializer-minecraft/
    implementation "team.unnamed:team.unnamed:creative-serializer-minecraft:1.7.2"
    // Required, https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/
    implementation "com.fasterxml.jackson.core:jackson-databind:"
    // Required, https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/
    implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:"
}

Code

fun main() {
}