{"id":14969552,"url":"https://github.com/boxbeam/redlib","last_synced_at":"2025-04-08T03:09:36.004Z","repository":{"id":38321856,"uuid":"127049946","full_name":"boxbeam/RedLib","owner":"boxbeam","description":"A powerful library for Spigot plugin development with a wide range of tools to make your life easier","archived":false,"fork":false,"pushed_at":"2024-08-17T23:22:23.000Z","size":4195,"stargazers_count":179,"open_issues_count":0,"forks_count":31,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-08T03:09:15.723Z","etag":null,"topics":["spigot","spigot-plugins"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/boxbeam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-27T21:51:44.000Z","updated_at":"2024-12-21T23:59:20.000Z","dependencies_parsed_at":"2023-12-11T02:27:24.117Z","dependency_job_id":"5a2fa876-830a-4b0b-a207-635ad2d82fea","html_url":"https://github.com/boxbeam/RedLib","commit_stats":{"total_commits":557,"total_committers":20,"mean_commits":27.85,"dds":0.06642728904847395,"last_synced_commit":"5242c84787bb534885aab79a692a6ec8707f4652"},"previous_names":["boxbeam/redlib"],"tags_count":207,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxbeam%2FRedLib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxbeam%2FRedLib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxbeam%2FRedLib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxbeam%2FRedLib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boxbeam","download_url":"https://codeload.github.com/boxbeam/RedLib/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247767234,"owners_count":20992547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["spigot","spigot-plugins"],"created_at":"2024-09-24T13:42:02.006Z","updated_at":"2025-04-08T03:09:35.983Z","avatar_url":"https://github.com/boxbeam.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RedLib\nRedLib is a Spigot plugin development library, designed to make your life easier and soothe the pain points of plugin development. Below, find instructions for the various components of RedLib.\n\nSupport Discord: https://discord.gg/agu5xGy2YZ\n\nDocs: https://redempt.dev/javadoc/com/github/Redempt/RedLib/index.html\n\n# Installation for Development\n\nRedLib is a standalone plugin, but can also be used as a shaded dependency if you do not want to distribute RedLib directly. To use it as a plugin dependency, you must add it as a dependency in your plugin.yml:\n\n```yaml\ndepend: [RedLib]\n```\n\nTo get the jar, either download it from the releases tab either here on [GitHub](https://github.com/Redempt/RedLib/releases) or on [Spigot](https://www.spigotmc.org/resources/redlib.78713/), or [build it locally](https://github.com/Redempt/RedLib#build-locally).\n\n## Gradle\n\n```groovy\nrepositories {\n        maven { url = 'https://redempt.dev' }\n}\n\n```\n\n```groovy\ndependencies {\n        compileOnly 'com.github.Redempt:RedLib:Tag'\n}\n```\n\nReplace `Tag` with a release tag for RedLib. You can see the latest version [here](https://github.com/Redempt/RedLib/releases/latest).\n\nTo shade RedLib, change the dependency from `compileOnly` to `implementation`, and install the [gradle shadow plugin](https://github.com/johnrengelman/shadow).\n\nIf you are having a problem while building, such as plugin.yml is duplicate, try setting duplicatesStrategy to DuplicatesStrategy.EXCLUDE.\n```groovy\ntasks {\n        processResources {\n                duplicatesStrategy = DuplicatesStrategy.EXCLUDE\n        }\n}\n```\n\n## Maven:\n\n```xml\n\u003crepository\u003e\n        \u003cid\u003eredempt.dev\u003c/id\u003e\n        \u003curl\u003ehttps://redempt.dev\u003c/url\u003e\n\u003c/repository\u003e\n```\n\n```xml\n\u003cdependency\u003e\n        \u003cgroupId\u003ecom.github.Redempt\u003c/groupId\u003e\n        \u003cartifactId\u003eRedLib\u003c/artifactId\u003e\n        \u003cversion\u003eTag\u003c/version\u003e\n        \u003cscope\u003eprovided\u003c/scope\u003e\n\u003c/dependency\u003e\n```\nReplace `Tag` with a release tag for RedLib. You can see the latest version [here](https://github.com/Redempt/RedLib/releases/latest).\n\nTo shade RedLib, change the scope from `provided` to `compile`.\n\n## Build locally:\n\nFor Windows, use Git Bash. For Linux or OSX, just ensure you have Git installed.Navigate to the directory where you want to clone the repository, and run:\n\n```\ngit clone https://github.com/Redempt/RedLib\ncd RedLib\n./gradlew jar\n```\n\nAfter running these commands, the jar will be at `build/libs/RedLib.jar`.\nYou may also need to add the jar to your classpath. After that, you should be good to go!\n\n# Usage\n\nFor info on how to use RedLib, please see the [wiki](https://github.com/Redempt/RedLib/wiki).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboxbeam%2Fredlib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboxbeam%2Fredlib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboxbeam%2Fredlib/lists"}