Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 1.38 KB

README.md

File metadata and controls

51 lines (43 loc) · 1.38 KB

🔮 Plus


📦 A light set of tools used for programming Minecraft plugins.

💻 For Developers

This library is designed to work specifically with PaperMC version 1.21.3.
Running on Java 21. Use with other Minecraft versions at your own risk.

Based on our testing, version 4.2.0 of Plus is the most compatible with older versions of Minecraft. If you are using a Minecraft version other than 1.21.3, we recommend using Plus version 4.3.1. For Minecraft 1.21.3 or newer, use the latest version of Plus for optimal compatibility.

🐘 Gradle

Groovy

repositories {
    maven { url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
}

dependencies {
    implementation 'com.marcusslover:plus:4.3.3-SNAPSHOT'
}

Kotlin

repositories {
    maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}

dependencies {
    implementation("com.marcusslover:plus:4.3.3-SNAPSHOT")
}

🦢 Maven

<repository>
    <id>ossrh</id>
    <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>

<dependency>
    <groupId>com.marcusslover</groupId>
    <artifactId>plus</artifactId>
    <version>4.3.3-SNAPSHOT</version>
</dependency>