mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 23:29:32 +01:00
[CI-SKIP] Add more detailed information for plugin devs
This commit is contained in:
parent
d39126d144
commit
315ba65d48
1 changed files with 16 additions and 2 deletions
18
README.md
18
README.md
|
@ -24,8 +24,22 @@ How To (Plugin Developers)
|
||||||
* See our API patches [here](Spigot-API-Patches)
|
* See our API patches [here](Spigot-API-Patches)
|
||||||
* See upcoming, pending, and recently added API [here](https://github.com/PaperMC/Paper/projects/6)
|
* 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/)
|
* Paper API javadocs here: [papermc.io/javadocs](https://papermc.io/javadocs/)
|
||||||
* Maven Repo (for paper-api): `https://papermc.io/repo/repository/maven-public`
|
* Maven Repo (for paper-api):
|
||||||
* Latest API version: `1.13.1-R0.1-SNAPSHOT`
|
```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.13.1-R0.1-SNAPSHOT</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
```
|
||||||
|
|
||||||
How To (Compiling Jar From Source)
|
How To (Compiling Jar From Source)
|
||||||
------
|
------
|
||||||
|
|
Loading…
Reference in a new issue