Querz / NBT

A java implementation of the NBT protocol, including a way to implement custom tags.
MIT License
182 stars 48 forks source link

Distribute via Maven? #43

Closed Xerosigma closed 4 years ago

Xerosigma commented 4 years ago

Would love to pull this down through gradle.

Querz commented 4 years ago

It is currently published on Jitpack. You can use it with Gradle like this:

repositories {
    ...
    maven { url 'https://jitpack.io/' }
}

And then add it as a dependency as usual:

dependencies {
    ...
    compile 'com.github.Querz:NBT:5.2'
}

I added this information to the Readme.