You can download flow-nbt-1.0.0.jar in this page.
MIT License
flow-nbt-1.0.0.jar file has the following types.
LICENSE.txt META-INF/MANIFEST.MF META-INF/maven/com.flowpowered/flow-nbt/pom.properties META-INF/maven/com.flowpowered/flow-nbt/pom.xml com.flowpowered.nbt.ByteArrayTag.class com.flowpowered.nbt.ByteTag.class com.flowpowered.nbt.CompoundMap.class com.flowpowered.nbt.CompoundTag.class com.flowpowered.nbt.DoubleTag.class com.flowpowered.nbt.EndTag.class com.flowpowered.nbt.FloatTag.class com.flowpowered.nbt.IntArrayTag.class com.flowpowered.nbt.IntTag.class com.flowpowered.nbt.ListTag.class com.flowpowered.nbt.LongTag.class com.flowpowered.nbt.NBTConstants.class com.flowpowered.nbt.NBTTester.class com.flowpowered.nbt.NBTUtils.class com.flowpowered.nbt.ShortArrayTag.class com.flowpowered.nbt.ShortTag.class com.flowpowered.nbt.StringTag.class com.flowpowered.nbt.Tag.class com.flowpowered.nbt.TagType.class com.flowpowered.nbt.exception.InvalidTagException.class com.flowpowered.nbt.gui.NBTViewer.class com.flowpowered.nbt.holder.BasicTagField.class com.flowpowered.nbt.holder.BooleanField.class com.flowpowered.nbt.holder.Field.class com.flowpowered.nbt.holder.FieldHolder.class com.flowpowered.nbt.holder.FieldHolderField.class com.flowpowered.nbt.holder.FieldUtils.class com.flowpowered.nbt.holder.FieldValue.class com.flowpowered.nbt.holder.ListField.class com.flowpowered.nbt.itemmap.StringMapReader.class com.flowpowered.nbt.regionfile.SimpleRegionFileReader.class com.flowpowered.nbt.stream.EndianSwitchableInputStream.class com.flowpowered.nbt.stream.EndianSwitchableOutputStream.class com.flowpowered.nbt.stream.NBTInputStream.class com.flowpowered.nbt.stream.NBTOutputStream.class com.flowpowered.nbt.util.NBTMapper.class
flow-nbt-1.0.0.pom file content.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- Project information --> <name>Flow NBT</name> <groupId>com.flowpowered</groupId> <artifactId>flow-nbt</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <inceptionYear>2011</inceptionYear> <url>https://flowpowered.com</url> <description>Named Binary Tag (NBT) library for Java based on Graham Edgecombe's JNBT library.</description> <!-- Parent information --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <!-- Build properties --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <buildNumber>0</buildNumber> <ciSystem>unknown</ciSystem> <commit>unknown</commit> <additionalparam>-Xdoclint:none</additionalparam> <mainClass>${project.groupId}.nbt.gui.NBTViewer</mainClass> </properties> <!-- License information --> <licenses> <license> <name>MIT License</name> <url>https://tldrlegal.com/l/mit</url> <distribution>repo</distribution> </license> </licenses> <!-- Organization information --> <organization> <name>Flow Powered</name> <url>https://flowpowered.com</url> </organization> <!-- Project developers --> <developers> <developer> <id>DDoS</id> <name>Aleksi Sapon</name> <email>qctechs@gmail.com</email> </developer> <developer> <id>kitskub</id> <name>Jack Huey</name> <email>kitskub@gmail.com</email> </developer> <developer> <id>Wolf480pl</id> <name>Wolf480pl</name> <email>wolf480@interia.pl</email> </developer> <developer> <id>Wulfspider</id> <name>Luke Spragg</name> <email>the@wulf.im</email> </developer> </developers> <!-- Source code access --> <scm> <connection>scm:git:git://github.com/flow/nbt.git</connection> <developerConnection>scm:git:git@github.com:flow/nbt.git</developerConnection> <url>https://github.com/flow/nbt</url> </scm> <!-- Continuous integration --> <ciManagement> <system>travis</system> <url>https://travis-ci.org/flow/nbt</url> </ciManagement> <!-- Issue management --> <issueManagement> <system>github</system> <url>https://github.com/flow/nbt/issues</url> </issueManagement> <!-- Project dependencies --> <dependencies> <!-- Testing only --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <!-- Build configuration --> <build> <defaultGoal>clean install</defaultGoal> <!-- Resources to include --> <resources> <!-- Static resources --> <resource> <filtering>false</filtering> <directory>.</directory> <targetPath>.</targetPath> <includes> <include>LICENSE.txt</include> </includes> </resource> </resources> <!-- Build plugins --> <plugins> <!-- License header plugin --> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <executions> <execution> <configuration> <properties> <project>${project.name}</project> <year>${project.inceptionYear}</year> <name>${project.organization.name}</name> <url>${project.organization.url}</url> </properties> <quiet>true</quiet> <encoding>UTF-8</encoding> <strictCheck>true</strictCheck> <header>HEADER.txt</header> <mapping> <java>SLASHSTAR_STYLE</java> </mapping> <keywords> <keyword>${project.name}</keyword> <keyword>license</keyword> </keywords> <includes> <include>src/main/java/**</include> <include>src/test/java/**</include> </includes> </configuration> <phase>clean</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <!-- Source compiler plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.7</source> <target>1.7</target> <compilerArguments> <O>-Xlint:all</O> <O>-Xlint:-path</O> </compilerArguments> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <!-- JAR creation plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> <configuration> <archive> <manifestEntries> <Specification-Title>${project.name}</Specification-Title> <Specification-Version>${project.version}+${ciSystem}-b${buildNumber}.git-${commit}</Specification-Version> <Specification-Vendor>${project.organization.name} - ${project.organization.url}</Specification-Vendor> <Main-Class>${mainClass}</Main-Class> </manifestEntries> </archive> </configuration> </plugin> <!-- Javadoc creation plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <author>false</author> <version>false</version> </configuration> </plugin> <!-- Coveralls reporting plugin --> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>3.0.1</version> </plugin> <!-- Cobertura test coverage plugin --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> <configuration> <format>xml</format> <maxmem>256m</maxmem> </configuration> </plugin> <!-- Surefire test plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.flowpowered</groupId> <artifactId>flow-nbt</artifactId> <version>1.0.0</version> </dependency>
If you think the following flow-nbt-1.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download flow-nbt-1.0.0.jar file