Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Pl3xMap API

BillyGalbreath edited this page Sep 20, 2022 · 4 revisions

In order to use the Pl3xMap API in your plugin or addon you must first import it to your project using gradle or maven.

Gradle (Groovy)
repositories {
    maven {
        url = "https://api.modrinth.com/maven"
    }
}
dependencies {
    compileOnly "maven.modrinth:pl3xmap:1.19.2-219"
}
Gradle (Kotlin)
repositories {
    maven {
        url = uri("https://api.modrinth.com/maven")
    }
}
dependencies {
    compileOnly("maven.modrinth:pl3xmap:1.19.2-219")
}
Maven
<repositories>
    <repository>
        <id>Modrinth</id>
        <url>https://api.modrinth.com/maven</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>maven.modrinth</groupId>
        <artifactId>pl3xmap</artifactId>
        <version>1.19.2-219</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Javadocs

https://billygalbreath.github.io/Pl3xMap/