This is a data extractor and generator for Minecraft.
It works in the JVM 16 (or higher) environment it takes advantage of Gradle and is written in Java.
To add ArticData (not the generators!) to your project using Maven or Gradle:
Adding to a Maven Project:
<dependencies>
<dependency>
<groupId>de.articdive</groupId>
<artifactId>articdata</artifactId>
<version>1.20-${COMMIT::8}</version>
</dependency>
</dependencies>
Adding to a Gradle Project (Kotlin DSL)
repositories {
mavenCentral()
}
dependencies {
implementation("de.articdive:articdata:1.20-${COMMIT::8}")
}
Replace COMMIT::8 with the first 8 chars of the Generator commit you would like to use.
Please note that GitHub shows the first 7 chars in the list view.
The repository artifacts include the data located here.
They include JSON files full of useful data to do with Minecraft.
We emit data in two ways:
- One JSON Object with namespaced identifiers as keys for json objects. Example
- One JSON Array with many json objects. Example
If you require any data, open a GitHub Issue and specify the data you need.
WARNING: There is no guarantee that the format of the data will stay the same.