Skip to content

A fork of MoltenJSON designed to run on Minecraft-Bukkit platforms

Notifications You must be signed in to change notification settings

moltenjson/BukkitJSON

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BukkitJSON

BukkitJSON is a Bukkit plugin, which acts like an alternative to MoltenJSON. This allows developers to have MoltenJSON as a dependency without needing to embed it in the plugin JAR. It also allows multiple plugins that use BukkitJSON to have a relatively small JAR size, all through BukkitJSON.

Developers

If you're a developer and would like to use BukkitJSON:

[1] Add it as a dependency to your plugin.yml: depend: [BukkitJSON]

Maven:

[2] Add it to your pom.xml:

<repositories>
   <repository>
       <id>jitpack.io</id>
       <url>https://jitpack.io</url>
   </repository>
</repositories>

...and to your dependencies:

<dependency>
    <groupId>com.github.moltenjson</groupId>
    <artifactId>BukkitJSON</artifactId>
    <version>VERSION</version>
    <scope>provided</scope>
</dependency>

Gradle

[2] Add this to your build.gradle:

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

...and to your dependencies:

compile 'com.github.moltenjson:BukkitJSON:VERSION'

JAR classpath

If you are not using any build system like Gradle or Maven, you can add BukkitJSON JAR to your classpath.

Download latest JAR here

Server Administrators

If you are a server owner/admin, and a plugin asked you to download BukkitJSON, simply drag and drop the latest JAR to your plugins folder, and all should be good.

Plugins that use BukkitJSON

  • None!

If your plugin uses BukkitJSON, feel free to open an issue requesting your plugin page to be added below.

About

A fork of MoltenJSON designed to run on Minecraft-Bukkit platforms

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages