An API aimed to simplify the development of Bukkit plugins (please use Paper or any Paper fork)
An API aimed to simplify the development of Paper plugins
This API is aimed to simplify the development of Paper plugins,
providing a lot of utilities that will make your life (and mine) easier
Even though a standalone plugin version is available, it's recommended to shade this API into your
plugins, as this API changes frequently and depending on the standalone version may cause
some issues if server owners install some plugins that depend on different versions of this API
❗ You need Java 17+ to use this API/Plugin. If you are using a lower version consider upgrading
⚠️ You need to set your plugin to use Spigot mappings in order to preserve compatibility with
Paper forks that are still using Spigot mappings.
More information in the PaperMC documentation
⚠️ Only Minecraft 1.17 or superior is officially supported. Versions below 1.17 will not receive any support
repositories {
maven {
name = "devadri"
url = uri("https://repo.devadri.es/repository/releases") // Use dev repository for beta builds
}
}
dependencies {
implementation("me.devadri:obsidian:{VERSION}") // Replace {VERSION} with the desired version
}
<repositories>
<repository>
<id>devadri</id>
<url>https://repo.devadri.es/repository/releases</url> <!-- Use dev repository for beta builds -->
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>me.devadri</groupId>
<artifactId>obsidian</artifactId>
<version>{VERSION}</version> <!-- Replace {VERSION} with the desired version -->
</dependency>
</dependencies>