Named Binary Tag (NBT) library for Java based on Graham Edgecombe's JNBT library. NBT is a tag based binary format designed to carry large amounts of binary data with smaller amounts of additional data.
The latest and greatest source can be found here on GitHub. If you are using Git, use this command to clone the project:
git clone git://github.com/divinecraft/nbt.git
Are you a talented programmer looking to contribute some code? We'd love the help!
- Open a pull request with your changes, following our guidelines and coding standards.
- Please follow the above guidelines for your pull request(s) accepted.
- For help setting up the project, keep reading!
Love the project? Feel free to [donate] to help continue development! Flow projects are open-source and powered by community members, like yourself. Without you, we wouldn't be here today!
Don't forget to watch and star our repo to keep up-to-date with the latest Flow development!
If you're using Maven to manage project dependencies, simply include the following in your pom.xml
file:
<dependency>
<groupId>ru.divinecraft</groupId>
<artifactId>flow-nbt</artifactId>
<version>1.0.2-SNAPSHOT</version>
</dependency>
If you're using Gradle to manage project dependencies, simply include the following in your build.gradle
file:
repositories {
mavenCentral()
}
dependencies {
compile 'com.flowpowered:flow-nbt:1.0.1-SNAPSHOT'
}
If you plan on using snapshots and do not already have the snapshot repo in your repository list, you will need to add this as well:
https://oss.sonatype.org/content/groups/public/
To generate Javadocs use the mvn javadoc:javadoc
command. To view the Javadocs simply go to target/site/apidocs/
and open index.html
in a web browser.
Flow NBT is licensed under the MIT License. Basically, you can do whatever you want as long as you include the original copyright. Please see the LICENSE.txt
file for details.