Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/infumia/pack
- Owner: Infumia
- License: mit
- Created: 2024-06-21T14:51:21.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-12-20T18:57:04.000Z (8 days ago)
- Last Synced: 2024-12-20T19:47:51.232Z (8 days ago)
- Language: Java
- Homepage:
- Size: 128 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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() {
}
```