{"id":22004330,"url":"https://github.com/codemc/worldguardwrapper","last_synced_at":"2025-05-05T17:26:33.588Z","repository":{"id":40348566,"uuid":"143216850","full_name":"CodeMC/WorldGuardWrapper","owner":"CodeMC","description":"A wrapper for the WorldGuard API that allows plugins to support both v6 and v7 APIs.","archived":false,"fork":false,"pushed_at":"2023-06-26T17:56:47.000Z","size":279,"stargazers_count":24,"open_issues_count":2,"forks_count":10,"subscribers_count":6,"default_branch":"master","last_synced_at":"2023-06-26T20:26:26.851Z","etag":null,"topics":["api","bukkit","library","maven","minecraft","plugin","spigot","worldguard","worldguard-api"],"latest_commit_sha":null,"homepage":null,"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/CodeMC.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}},"created_at":"2018-08-01T23:03:31.000Z","updated_at":"2023-03-09T18:00:42.000Z","dependencies_parsed_at":"2023-01-27T22:31:36.391Z","dependency_job_id":null,"html_url":"https://github.com/CodeMC/WorldGuardWrapper","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeMC%2FWorldGuardWrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeMC%2FWorldGuardWrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeMC%2FWorldGuardWrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeMC%2FWorldGuardWrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodeMC","download_url":"https://codeload.github.com/CodeMC/WorldGuardWrapper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227239616,"owners_count":17752498,"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":["api","bukkit","library","maven","minecraft","plugin","spigot","worldguard","worldguard-api"],"created_at":"2024-11-30T00:15:29.329Z","updated_at":"2024-11-30T00:15:29.976Z","avatar_url":"https://github.com/CodeMC.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WorldGuardWrapper\n[![Build Status](https://ci.codemc.org/buildStatus/icon?job=CodeMC/WorldGuardWrapper)](https://ci.codemc.org/view/Author/job/CodeMC/job/WorldGuardWrapper/)\n![Maven](https://img.shields.io/maven-metadata/v/https/repo.codemc.org/repository/maven-public/org/codemc/worldguardwrapper/worldguardwrapper/maven-metadata.xml.svg)\n[![Javadocs](https://img.shields.io/badge/docs-javadocs-brightgreen.svg)](https://ci.codemc.io/job/CodeMC/job/WorldGuardWrapper/javadoc/)\n[![Discord](https://img.shields.io/badge/chat-discord-blue.svg)](https://discord.gg/cnKwdsg)\n\nA wrapper for the WorldGuard API that allows plugins to support both v6 and v7 APIs.\n\n## Maven dependency\nHow to include WorldEditWrapper into your maven project:\n\n```xml\n\u003cproject\u003e\n    \u003crepositories\u003e\n        \u003crepository\u003e\n            \u003cid\u003ecodemc-repo\u003c/id\u003e\n            \u003curl\u003ehttps://repo.codemc.org/repository/maven-public/\u003c/url\u003e\n        \u003c/repository\u003e\n    \u003c/repositories\u003e\n\n    \u003cdependencies\u003e\n        \u003cdependency\u003e\n            \u003cgroupId\u003eorg.codemc.worldguardwrapper\u003c/groupId\u003e\n            \u003cartifactId\u003eworldguardwrapper\u003c/artifactId\u003e\n            \u003cversion\u003e1.2.1-SNAPSHOT\u003c/version\u003e\n        \u003c/dependency\u003e\n    \u003c/dependencies\u003e\n\u003c/project\u003e\n```\n\nRemember to include/relocate the library into your final jar, example:\n\n```xml\n    \u003cbuild\u003e\n        \u003cplugins\u003e\n            \u003cplugin\u003e\n                \u003cgroupId\u003eorg.apache.maven.plugins\u003c/groupId\u003e\n                \u003cartifactId\u003emaven-shade-plugin\u003c/artifactId\u003e\n                \u003cversion\u003e3.2.4\u003c/version\u003e\n                \u003cexecutions\u003e\n                    \u003cexecution\u003e\n                        \u003cphase\u003epackage\u003c/phase\u003e\n                        \u003cgoals\u003e\n                            \u003cgoal\u003eshade\u003c/goal\u003e\n                        \u003c/goals\u003e\n                    \u003c/execution\u003e\n                \u003c/executions\u003e\n                \u003cconfiguration\u003e\n                    \u003crelocations\u003e\n                        \u003crelocation\u003e\n                            \u003cpattern\u003eorg.codemc.worldguardwrapper\u003c/pattern\u003e\n                            \u003cshadedPattern\u003eYOUR.PLUGIN.PACKAGE.libs.worldguardwrapper\u003c/shadedPattern\u003e\n                        \u003c/relocation\u003e\n                    \u003c/relocations\u003e\n                \u003c/configuration\u003e\n            \u003c/plugin\u003e\n        \u003c/plugins\u003e\n    \u003c/build\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodemc%2Fworldguardwrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodemc%2Fworldguardwrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodemc%2Fworldguardwrapper/lists"}