Skip to content

Latest commit

 

History

History
50 lines (42 loc) · 1.46 KB

README.md

File metadata and controls

50 lines (42 loc) · 1.46 KB

TheNewItemLibrary Codacy Badge

A library used by The New Economy for item-based operations, including calculations, removal, comparisons, and serialization of any items, including potions, shulker boxes, and other "special" items. This library serializes the items into JSON-valid Strings. This library has also been rewritten to be platform agnostic, and will include sponge support shortly.

Maven

TheNewItemLibrary uses maven for dependency management.

Repository:

<repository>
    <id>codemc-releases</id>
    <url>https://repo.codemc.io/repository/maven-public/</url>
</repository>

Core Dependency:

<dependency>
    <groupId>net.tnemc</groupId>
    <artifactId>TNIL-Core</artifactId>
    <version>0.1.7.4-Pre-17</version>
    <scope>compile</scope>
</dependency>

Bukkit Dependency:

<dependency>
    <groupId>net.tnemc</groupId>
    <artifactId>TNIL-Bukkit</artifactId>
    <version>0.1.7.4-Pre-17</version>
    <scope>compile</scope>
</dependency>

Sponge 8 Dependency:

<dependency>
    <groupId>net.tnemc</groupId>
    <artifactId>TNIL-Sponge</artifactId>
    <version>0.1.7.4-Pre-17</version>
    <scope>compile</scope>
</dependency>

Sponge 7 Dependency:

coming soon