{"id":13466635,"url":"https://github.com/PaperMC/Paper","last_synced_at":"2025-03-26T00:31:14.595Z","repository":{"id":37390669,"uuid":"50160261","full_name":"PaperMC/Paper","owner":"PaperMC","description":"The most widely used, high performance Minecraft server that aims to fix gameplay and mechanics inconsistencies","archived":false,"fork":false,"pushed_at":"2024-10-29T14:38:54.000Z","size":93555,"stargazers_count":9950,"open_issues_count":452,"forks_count":2298,"subscribers_count":169,"default_branch":"master","last_synced_at":"2024-10-29T14:51:29.689Z","etag":null,"topics":["bukkit","hacktoberfest","java","minecraft","minecraft-api","minecraft-performance","minecraft-server","paper","paper-api","papermc","tacos"],"latest_commit_sha":null,"homepage":"https://papermc.io/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PaperMC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"PaperMC","open_collective":"PaperMC"}},"created_at":"2016-01-22T05:40:19.000Z","updated_at":"2024-10-29T11:13:45.000Z","dependencies_parsed_at":"2023-10-02T21:23:19.423Z","dependency_job_id":"82e3a756-1df9-4476-93c0-9d4b87abf042","html_url":"https://github.com/PaperMC/Paper","commit_stats":{"total_commits":8984,"total_committers":538,"mean_commits":16.69888475836431,"dds":0.8421638468388246,"last_synced_commit":"755a7753af6ad46756bd04b5b3bcfac46a3ec072"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PaperMC%2FPaper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PaperMC%2FPaper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PaperMC%2FPaper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PaperMC%2FPaper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PaperMC","download_url":"https://codeload.github.com/PaperMC/Paper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245267565,"owners_count":20587459,"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":["bukkit","hacktoberfest","java","minecraft","minecraft-api","minecraft-performance","minecraft-server","paper","paper-api","papermc","tacos"],"created_at":"2024-07-31T15:00:47.543Z","updated_at":"2025-03-26T00:31:14.381Z","avatar_url":"https://github.com/PaperMC.png","language":"Java","readme":"Paper [![Paper Build Status](https://img.shields.io/github/actions/workflow/status/PaperMC/Paper/build.yml?branch=master)](https://github.com/PaperMC/Paper/actions)\n[![Discord](https://img.shields.io/discord/289587909051416579.svg?label=\u0026logo=discord\u0026logoColor=ffffff\u0026color=7389D8\u0026labelColor=6A7EC2)](https://discord.gg/papermc)\n[![GitHub Sponsors](https://img.shields.io/github/sponsors/papermc?label=GitHub%20Sponsors)](https://github.com/sponsors/PaperMC)\n[![Open Collective](https://img.shields.io/opencollective/all/papermc?label=OpenCollective%20Sponsors)](https://opencollective.com/papermc)\n===========\n\nThe most widely used, high-performance Minecraft server that aims to fix gameplay and mechanics inconsistencies.\n\n\n**Support and Project Discussion:**\n- [Our forums](https://forums.papermc.io/) or [Discord](https://discord.gg/papermc)\n\nHow To (Server Admins)\n------\nPaperclip is a jar file that you can download and run just like a normal jar file.\n\nDownload Paper from our [downloads page](https://papermc.io/downloads/paper).\n\nRun the Paperclip jar directly from your server. Just like old times\n\n* Documentation on using Paper: [docs.papermc.io](https://docs.papermc.io)\n* For a sneak peek at upcoming features, [see here](https://github.com/PaperMC/Paper/projects)\n\nHow To (Plugin Developers)\n------\n* See our API patches [here](patches/api)\n* See upcoming, pending, and recently added API [here](https://github.com/orgs/PaperMC/projects/2/views/4)\n* Paper API javadocs here: [papermc.io/javadocs](https://papermc.io/javadocs/)\n#### Repository (for paper-api)\n##### Maven\n\n```xml\n\u003crepository\u003e\n    \u003cid\u003epapermc\u003c/id\u003e\n    \u003curl\u003ehttps://repo.papermc.io/repository/maven-public/\u003c/url\u003e\n\u003c/repository\u003e\n```\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.papermc.paper\u003c/groupId\u003e\n    \u003cartifactId\u003epaper-api\u003c/artifactId\u003e\n    \u003cversion\u003e1.21.1-R0.1-SNAPSHOT\u003c/version\u003e\n    \u003cscope\u003eprovided\u003c/scope\u003e\n\u003c/dependency\u003e\n```\n##### Gradle\n```kotlin\nrepositories {\n    maven {\n        url = uri(\"https://repo.papermc.io/repository/maven-public/\")\n    }\n}\n\ndependencies {\n    compileOnly(\"io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT\")\n}\n\njava {\n    toolchain.languageVersion.set(JavaLanguageVersion.of(21))\n}\n```\n\nHow To (Compiling Jar From Source)\n------\nTo compile Paper, you need JDK 21 and an internet connection.\n\nClone this repo, run `./gradlew applyPatches`, then `./gradlew createMojmapBundlerJar` from your terminal. You can find the compiled jar in the project root's `build/libs` directory.\n\nTo get a full list of tasks, run `./gradlew tasks`.\n\nHow To (Pull Request)\n------\nSee [Contributing](CONTRIBUTING.md)\n\nSupport Us\n------\nFirst of all, thank you for considering helping out, we really appreciate that!\n\nPaperMC has various recurring expenses, mostly related to infrastructure. Paper uses [Open Collective](https://opencollective.com/) via the [Open Source Collective fiscal host](https://opencollective.com/opensource) to manage expenses. Open Collective allows us to be extremely transparent, so you can always see how your donations are used. You can read more about financially supporting PaperMC [on our website](https://papermc.io/sponsors).\n\nYou can find our collective [here](https://opencollective.com/papermc), or you can donate via GitHub Sponsors [here](https://github.com/sponsors/PaperMC), which will also go towards the collective.\n\nSpecial Thanks To:\n-------------\n\n[![YourKit-Logo](https://www.yourkit.com/images/yklogo.png)](https://www.yourkit.com/)\n\n[YourKit](https://www.yourkit.com/), makers of the outstanding java profiler, support open source projects of all kinds with their full featured [Java](https://www.yourkit.com/java/profiler) and [.NET](https://www.yourkit.com/.net/profiler) application profilers. We thank them for granting Paper an OSS license so that we can make our software the best it can be.\n\n[\u003cimg src=\"https://user-images.githubusercontent.com/21148213/121807008-8ffc6700-cc52-11eb-96a7-2f6f260f8fda.png\" alt=\"\" width=\"150\"\u003e](https://www.jetbrains.com)\n\n[JetBrains](https://www.jetbrains.com/), creators of the IntelliJ IDEA, supports Paper with one of their [Open Source Licenses](https://www.jetbrains.com/opensource/). IntelliJ IDEA is the recommended IDE for working with Paper, and most of the Paper team uses it.\n\nAll our sponsors!  \n[![Sponsor Image](https://raw.githubusercontent.com/PaperMC/papermc.io/data/sponsors.png)](https://papermc.io/sponsors)\n","funding_links":["https://github.com/sponsors/PaperMC","https://opencollective.com/PaperMC","https://opencollective.com/papermc","https://opencollective.com/","https://opencollective.com/opensource"],"categories":["Java","Uncategorized","java","Repos","Application Recommendation"],"sub_categories":["Uncategorized","🎮 Game Servers"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPaperMC%2FPaper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FPaperMC%2FPaper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPaperMC%2FPaper/lists"}