Skip to content

KevinPriv/MojangAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MojangAPI

Parsing for all the Mojang API

Examples:

https://github.com/KevinPriv/MojangAPI/tree/master/src/test/java/examples

Downloads

https://github.com/KevinPriv/MojangAPI/releases

Gradle

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

Adding the dependency:

    dependencies {
        compile "com.github.KevinPriv:MojangAPI:1.0"
    }

Maven

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

Adding the dependency:

<dependency>
    <groupId>com.github.KevinPriv</groupId>
    <artifactId>MojangAPI</artifactId>
    <version>1.0</version>
</dependency>