2021-01-01 04:56:55 +08:00
Paper ![GitHub Workflow Status (branch) ](https://img.shields.io/github/workflow/status/PaperMC/Paper/Build%20Paper/master )
2013-01-15 09:18:40 +08:00
===========
2014-07-05 04:34:50 +08:00
High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies.
2014-08-20 02:56:57 +08:00
2013-06-17 03:45:21 +08:00
2018-09-12 07:50:07 +08:00
**Support and Project Discussion:**
2020-11-10 16:15:03 +08:00
- [IRC ](https://webchat.esper.net/?channels=paper ) or [Discord ](https://discord.gg/papermc )
2021-01-17 05:02:34 +08:00
2014-08-20 02:56:57 +08:00
2016-01-27 02:53:16 +08:00
How To (Server Admins)
2014-11-30 05:12:04 +08:00
------
2016-03-29 11:59:04 +08:00
Paperclip is a jar file that you can download and run just like a normal jar file.
2018-10-30 07:55:36 +08:00
Download Paper from our [downloads page ](https://papermc.io/downloads ).
2014-08-20 02:56:57 +08:00
2016-03-21 08:32:00 +08:00
Run the Paperclip jar directly from your server. Just like old times
2013-06-17 03:45:21 +08:00
2018-09-12 07:50:07 +08:00
* Documentation on using Paper: [paper.readthedocs.io ](https://paper.readthedocs.io/ )
* For a sneak peak on upcoming features, [see here ](https://github.com/PaperMC/Paper/projects )
How To (Plugin Developers)
------
* See our API patches [here ](Spigot-API-Patches )
* See upcoming, pending, and recently added API [here ](https://github.com/PaperMC/Paper/projects/6 )
* Paper API javadocs here: [papermc.io/javadocs ](https://papermc.io/javadocs/ )
2018-09-24 01:52:37 +08:00
* Maven Repo (for paper-api):
```xml
< repository >
< id > papermc< / id >
< url > https://papermc.io/repo/repository/maven-public/< / url >
< / repository >
```
* Artifact Information:
```xml
< dependency >
< groupId > com.destroystokyo.paper< / groupId >
< artifactId > paper-api< / artifactId >
2021-01-16 18:32:44 +08:00
< version > 1.16.5-R0.1-SNAPSHOT< / version >
2018-09-24 01:52:37 +08:00
< scope > provided< / scope >
2020-07-03 05:44:14 +08:00
< / dependency >
2018-09-24 01:52:37 +08:00
```
2016-01-27 02:53:16 +08:00
2020-06-30 04:14:22 +08:00
**Or alternatively, with Gradle:**
* Repository:
```groovy
repositories {
maven {
url 'https://papermc.io/repo/repository/maven-public/'
}
}
```
* Artifact:
```groovy
dependencies {
2021-01-16 18:32:44 +08:00
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
2020-06-30 04:14:22 +08:00
}
```
2016-03-29 11:59:04 +08:00
How To (Compiling Jar From Source)
2016-01-27 02:53:16 +08:00
------
2016-03-21 08:32:00 +08:00
To compile Paper, you need JDK 8, maven, and an internet connection.
2016-01-27 02:53:16 +08:00
2016-04-03 17:51:14 +08:00
Clone this repo, run `./paper jar` from *bash* , get files.
2016-01-27 02:53:16 +08:00
2016-03-29 11:59:04 +08:00
How To (Pull Request)
------
2016-03-29 12:07:27 +08:00
See [Contributing ](CONTRIBUTING.md )
2016-03-29 11:59:04 +08:00
2016-01-27 02:53:16 +08:00
Special Thanks To:
-------------
![YourKit-Logo ](https://www.yourkit.com/images/yklogo.png )
2021-01-20 23:23:30 +08:00
[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.