From 9682a8380ff1c54c07c53a67aa313b6bae5976f2 Mon Sep 17 00:00:00 2001 From: Roman Zhuravlev Date: Sun, 2 Nov 2025 03:56:20 +0500 Subject: [PATCH] Update README.md --- README.md | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 51 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e71c265..049be4e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,53 @@ -# Bukman introduction + +[gradleInstall]: https://gradle.org/install/ + -This is a fork of the ServerUtils plugin. Upstream: https://github.com/FrankHeijden/ServerUtils. +# Bukman +Bukman allows you to manage your plugins in-game. +Featuring reloading, unloading and loading of plugins from your plugins folder at runtime. +Bukman also has handy methods to lookup commands and plugins, +and provides you with handy information about them. -In development... \ No newline at end of file +## Compiling Bukman +There are two ways to compile Bukman: +### 1. Installing gradle (recommended) +1. Make sure you have [gradle][gradleInstall] installed. +2. Run the project with `gradle build` to compile it with dependencies. +### 2. Using the wrapper +**Windows**: `gradlew.bat build` +
+**Linux/macOS**: `./gradlew build` + +#### Gradle: +```kotlin +repositories { + maven("https://maven.zhira.net/repository/zhdev/") +} + +dependencies { + compileOnly("org.zhdev.bukman:bukman:VERSION") +} +``` + +#### Maven: +```xml + + + + + zhdev-repo + https://maven.zhira.net/repository/zhdev/ + + + + + + + org.zhdev.bukman + bukman + VERSION + provided + + + +```