Skip to content

MineKing9534/MathUtils

Repository files navigation

[Java CI] [Latest Version]

Installation

MathUtils is hosted on a custom repository at https://maven.mineking.dev. Replace VERSION with the lastest version (without the v prefix). Alternatively, you can download the artifacts from jitpack (not recommended).

Gradle

repositories {
    maven { url "https://maven.mineking.dev/releases" }
}

dependencies {
    implementation "de.mineking:MathUtils:VERSION"
}

Maven

<repositories>
    <repository>
        <id>mineking</id>
        <url>https://maven.mineking.dev/releases</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>de.mineking</groupId>
        <artifactId>MathUtils</artifactId>
        <version>VERSION</version>
    </dependency>
</dependencies>