Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 871 Bytes

readme.md

File metadata and controls

51 lines (42 loc) · 871 Bytes

HypixelApi4J

Parses the Hypixel API and allows easy access by getters Now includes full MojangAPI suppport!

Examples:

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

Downloads

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

Gradle

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

Adding the dependency:

    dependencies {
        compile "com.github.KevinPriv:HypixelApi4J:API-1.7"
    }

Maven

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

Adding the dependency:

<dependency>
    <groupId>com.github.KevinPriv</groupId>
    <artifactId>HypixelApi4J</artifactId>
    <version>API-1.7</version>
</dependency>