Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/infumia/pack

Minecraft resource pack generator.
https://github.com/infumia/pack

Last synced: 7 days ago
JSON representation

Minecraft resource pack generator.

Awesome Lists containing this project

README

        

# pack
[![Maven Central Version](https://img.shields.io/maven-central/v/net.infumia/pack)](https://central.sonatype.com/artifact/net.infumia/pack)
## How to Use (Developers)
### Gradle
```groovy
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
```kotlin
fun main() {
}
```