mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 18:45:54 +01:00
e792da723a
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 30885166 Update to Minecraft 1.16.4 CraftBukkit Changes: 3af81c71 Update to Minecraft 1.16.4 Spigot Changes: f011ca24 Update to Minecraft 1.16.4 Co-authored-by: Mariell Hoversholm <proximyst@proximyst.com>
77 lines
2.4 KiB
Markdown
77 lines
2.4 KiB
Markdown
Paper [![Build Status](https://papermc.io/ci/job/Paper-1.16/badge/icon)](https://papermc.io/ci/job/Paper-1.16/)
|
|
===========
|
|
|
|
High performance Spigot fork that aims to fix gameplay and mechanics inconsistencies.
|
|
|
|
|
|
**Support and Project Discussion:**
|
|
- [IRC](https://irc.spi.gt/iris/?channels=paper) or [Discord](https://discord.gg/papermc)
|
|
|
|
|
|
How To (Server Admins)
|
|
------
|
|
Paperclip is a jar file that you can download and run just like a normal jar file.
|
|
|
|
Download Paper from our [downloads page](https://papermc.io/downloads).
|
|
|
|
Run the Paperclip jar directly from your server. Just like old times
|
|
|
|
* 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/)
|
|
* 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>
|
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
```
|
|
|
|
**Or alternatively, with Gradle:**
|
|
|
|
* Repository:
|
|
```groovy
|
|
repositories {
|
|
maven {
|
|
url 'https://papermc.io/repo/repository/maven-public/'
|
|
}
|
|
}
|
|
```
|
|
* Artifact:
|
|
```groovy
|
|
dependencies {
|
|
compileOnly 'com.destroystokyo.paper:paper-api:1.16.3-R0.1-SNAPSHOT'
|
|
}
|
|
```
|
|
|
|
How To (Compiling Jar From Source)
|
|
------
|
|
To compile Paper, you need JDK 8, maven, and an internet connection.
|
|
|
|
Clone this repo, run `./paper jar` from *bash*, get files.
|
|
|
|
How To (Pull Request)
|
|
------
|
|
See [Contributing](CONTRIBUTING.md)
|
|
|
|
Special Thanks To:
|
|
-------------
|
|
|
|
![YourKit-Logo](https://www.yourkit.com/images/yklogo.png)
|
|
|
|
[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/index.jsp) and [.NET](https://www.yourkit.com/.net/profiler/index.jsp) application profilers. We thank them for granting Paper an OSS license so that we can make our software the best it can be.
|