Daarkiii / MojangAPI-Wrapper

A Java Wrapper with implemented cache for the official Mojang API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MojangAPI-Wrapper


The official documentation can be found here: https://wiki.vg/Mojang_API

Usage

//you can access everything with the MojangAPI class
MojangAPI.*

Gradle

Add the repository to your build file:

repositories {
    maven("https://repo.aysu.tv/repository/releases/")
}

Add the dependency to your build file:

dependencies {
    implementation("xyz.daarkii.mojangapi:MojangAPI:1.0.0")
}

Maven

Add the repository to your pom:

<repositories>
    <repository>
        <id>aysu-repo</id>
        <url>https://repo.aysu.tv/repository/releases/</url>
    </repository>
</repositories>

Add the dependency to your pom:

<dependencies>
    <dependency>
        <groupId>xyz.daarkii.mojangapi</groupId>
        <artifactId>MojangAPI</artifactId>
        <version>1.0.0</version>
    </dependency>
</dependencies>

About

A Java Wrapper with implemented cache for the official Mojang API


Languages

Language:Java 91.9%Language:Kotlin 8.1%