[CI-SKIP] Update README (#5882)
This commit is contained in:
parent
3d43c5e500
commit
bc4b23e389
1 changed files with 7 additions and 5 deletions
12
README.md
12
README.md
|
@ -34,9 +34,9 @@ How To (Plugin Developers)
|
|||
* Artifact Information:
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>com.destroystokyo.paper</groupId>
|
||||
<groupId>io.papermc.paper</groupId>
|
||||
<artifactId>paper-api</artifactId>
|
||||
<version>1.16.5-R0.1-SNAPSHOT</version>
|
||||
<version>1.17-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
```
|
||||
|
@ -54,15 +54,17 @@ repositories {
|
|||
* Artifact:
|
||||
```groovy
|
||||
dependencies {
|
||||
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
|
||||
compileOnly 'io.papermc.paper:paper-api:1.17-R0.1-SNAPSHOT'
|
||||
}
|
||||
```
|
||||
|
||||
How To (Compiling Jar From Source)
|
||||
------
|
||||
To compile Paper, you need JDK 8, maven, and an internet connection.
|
||||
To compile Paper, you need JDK 16 and an internet connection.
|
||||
|
||||
Clone this repo, run `./paper jar` from *bash*, get files.
|
||||
Clone this repo, run `./gradlew applyPatches`, then `./gradlew reobfJar` from your terminal. You can find the compiled jar in the `Paper-Server/build/libs` directory.
|
||||
|
||||
To get a full list of tasks, run `./gradlew tasks`.
|
||||
|
||||
How To (Pull Request)
|
||||
------
|
||||
|
|
Loading…
Reference in a new issue