ResourceLib
๐ Updated over a year agoPreview

๐ Analysis
- ๐ #24 of 25 library mods in this game by downloads
๐ About This Mod
**This plugin does nothing on its own!!** # ๐ฆ ResourceLib **ResourceLib** is a lightweight Spigot/Paper plugin library that allows other plugins to dynamically register resource pack files at startup. It generates and serves a custom ZIP pack over HTTP and automatically sends it to players using Minecraftโs native ``setResourcePack()`` API โ no manual file hosting required. *** # โจ Features - ๐ Merge JSON models, textures, and more from multiple plugins - ๐ Hosts the resource pack with an embedded HTTP server (no config needed!) - ๐ง JSON merging with conflict resolution (as configured!) *** # ๐งฉ Usage ## 1. Install ### Gradle (Kotlin DSL): ```kotlin repositories { mavenCentral() maven { url = uri("https://jitpack.io") } } dependencies { implementation("com.github.Bogieloo:ResourceLib:v1.0") } ``` ### Maven: ```xml <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.github.Bogieloo</groupId> <artifactId>ResourceLib</artifactId> <version>v1.0</version> </dependency> </dependencies> ``` ## 2. Register Your Resources In your pluginโs ``onEnable()``: ```java @Override public void onEnable() { // Register a single file ResourcePackManager.getInstance().registerResource( "assets/minecraft/models/item/custom_sword.json", new File(getDataFolder(), "custom_sword.json"), false ); // Register a whole folder (e.g., src/main/resources/tanks/) ResourcePackManager.getInstance().registerResourceEntry(this, "tanks", true); } ``` ## 3. Install ResourceLib on the Server - Drop the ResourceLib JAR into the ``plugins/`` folder. - Make sure port ``61234`` is open to all players! - Enjoy! *** Made with โค๏ธ by devs for devs. (https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/Q5Q3LZWWC)
This plugin does nothing on its own!!
# ๐ฆ ResourceLib ResourceLib is a lightweight Spigot/Paper plugin library that allows other plugins to dynamically register resource pack files at startup. It generates and serves a custom ZIP pack over HTTP and automatically sends it to players using Minecraftโs native ``setResourcePack()`` API โ no manual file hosting required. # โจ Features - ๐ Merge JSON models, textures, and more from multiple plugins - ๐ Hosts the resource pack with an embedded HTTP server (no config needed!) - ๐ง JSON merging with conflict resolution (as configured!) # ๐งฉ Usage ## 1. Install ### Gradle (Kotlin DSL): ```kotlin repositories { mavenCentral() maven { url = uri("https://jitpack.io") } }
dependencies {
implementation("com.github. Bogieloo:ResourceLib:v1. 0")
}
```
### Maven:
```xml
// Register a whole folder (e.g., src/main/resources/tanks/) ResourcePackManager.getInstance().registerResourceEntry(this, "tanks", true); } ``` ## 3. Install ResourceLib on the Server - Drop the ResourceLib JAR into the ``plugins/`` folder. - Make sure port ``61234`` is open to all players! - Enjoy! *** Made with โค๏ธ by devs for devs.
[!(https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/Q5Q3LZWWC)
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- Bogieloo
- Version
- 1.0.1
- Downloads
- 81
- Endorsements
- 0
- Category
- library
- Created
- 7/17/2025
- Updated
- 7/11/2025
- Game Versions
- 1.19.4, 1.20, 1.20.1, 1.20.2, 1.20.3
- Tags
- library
๐ง How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
๐ Full step-by-step install guide for Minecraft Plugins โ
Visit the official mod page for specific installation instructions for this mod.
๐ฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
โ Frequently Asked Questions
Which Minecraft Plugins versions does ResourceLib support?
The author lists 1.19.4, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4. Other versions may work but are untested by the author.
What is the latest version of ResourceLib?
Version 1.0.1, published 2025-07-11 with 81 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await