{"id":30137562,"url":"https://github.com/azurejelly/paper-template","last_synced_at":"2026-05-15T18:31:24.829Z","repository":{"id":307908144,"uuid":"799356107","full_name":"azurejelly/paper-template","owner":"azurejelly","description":"A Minecraft server plugin template using Google Guice.","archived":false,"fork":false,"pushed_at":"2025-08-02T22:45:31.000Z","size":117,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"multi-module","last_synced_at":"2026-04-04T10:32:48.324Z","etag":null,"topics":["bukkit","bukkit-plugin","minecraft","minecraft-server","papermc","plugin","server"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azurejelly.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,"zenodo":null}},"created_at":"2024-05-11T22:14:50.000Z","updated_at":"2025-08-02T22:45:34.000Z","dependencies_parsed_at":"2025-08-03T00:19:38.033Z","dependency_job_id":"60b06905-7041-4172-92b9-9766f6a3d7e9","html_url":"https://github.com/azurejelly/paper-template","commit_stats":null,"previous_names":["azurejelly/paper-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/azurejelly/paper-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fpaper-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fpaper-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fpaper-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fpaper-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azurejelly","download_url":"https://codeload.github.com/azurejelly/paper-template/tar.gz/refs/heads/multi-module","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fpaper-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33074840,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bukkit","bukkit-plugin","minecraft","minecraft-server","papermc","plugin","server"],"created_at":"2025-08-11T00:52:32.772Z","updated_at":"2026-05-15T18:31:24.812Z","avatar_url":"https://github.com/azurejelly.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Paper Template\nA Minecraft server plugin template using [Google Guice](https://github.com/google/guice). Looking for a template with only one module? Check [this branch](https://github.com/azurejelly/paper-template/tree/single-module) out.\n\n## Requirements\nTo use this template, you will need:\n- Some experience with [Google Guice](https://github.com/google/guice);\n- [Git](https://www.git-scm.com/) for Version Control;\n- An IDE - preferably [IntelliJ IDEA](https://www.jetbrains.com/idea/);\n- [JDK 21](https://adoptium.net/) or higher.\n  - You can lower this requirement to Java 17, 11 or even 8 by modifying the source files accordingly.\n\n## Getting started\nClone the repository using the following command on the command line:\n```shell\n$ git clone https://github.com/azurejelly/paper-template\n$ cd paper-template\n```\n\nAlternatively, download the source files as a ZIP from [here](https://github.com/azurejelly/paper-template/archive/refs/heads/multi-module.zip). You will need to extract them to a folder using something like 7-Zip.\n\n## Setup\nImport the project to IntelliJ IDEA, or open it directly from the command line:\n```shell\n$ idea .\n```\n\nTo change the plugin's name, description, group ID, version and some other properties, open up the `gradle.properties` file. By default, the file looks like this:\n```properties\ngroup=dev.azuuure.sample\nversion=1.0.0\n\n# Sets the Minecraft version to use with the 'runServer' task.\nserverVersion=1.21.3\n\n# Sets the plugin name, description and website.\n# The description and website are both optional and can be commented out.\npluginName=SamplePlugin\npluginDescription=\"It's as shrimple as that\"\npluginWebsite=https://azuuure.dev\n```\n\nWhen changing the group ID, be sure to change the packages inside the source code as well. You can do this by right-clicking the packages on IntelliJ IDEA, then choosing `Refactor \u003e Rename`. If the server yells at you when loading the plugin because it can't find the main class, try specifying it manually in the [`plugin/build.gradle.kts`](plugin/build.gradle.kts) file:\n```kt\nbukkit {\n    /* ... */\n    main = \"${project.group}.${pluginName}\"\n    /* ... */\n}\n```\n\n## Running an integrated server\nYou can run an integrated Paper server with the plugin by using the `gradlew runServer` task:\n```shell\n$ ./gradlew runServer\n```\nThis also supports downloading plugin dependencies automatically - see the [run-task wiki](https://github.com/jpenilla/run-task/wiki/) for more information.\n\n## Building for distribution\nTo build a version ready for distribution, simply run:\n```shell\n$ ./gradlew build\n```\nYou should now have a file that you can distribute at the `plugin/build/libs/` directory (the one without the `-original` suffix!).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurejelly%2Fpaper-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazurejelly%2Fpaper-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurejelly%2Fpaper-template/lists"}