Multi-purpose library aiming to make development of PaperMC/Paper plugins faster.
Requires Java 21 (or higher) and Paper 1.20.1 (or higher).
We're using GitHub Gradle Registry for publications and thus may require extra steps for the project to build properly.
repositories {
maven { url = "https://maven.pkg.github.com/grabsky/bedrock"
credentials {
username = findProperty("gpr.actor") ?: System.getenv("GITHUB_ACTOR")
password = findProperty("gpr.token") ?: System.getenv("GITHUB_TOKEN")
}
}
}
dependencies {
implementation("cloud.grabsky:bedrock:[_VERSION_]")
}
# Cloning the repository.
$ git clone https://github.com/Grabsky/bedrock.git
# Entering the cloned repository.
$ cd bedrock
# Compiling and publishing to maven local.
$ gradlew clean publishToMavenLocal
This project is open for contributions. Help in regards of improving performance, adding new features or fixing bugs is greatly appreciated.