diff --git a/README.md b/README.md index f580b6270..3a1c3ea7f 100644 --- a/README.md +++ b/README.md @@ -34,9 +34,9 @@ How To (Plugin Developers) * Artifact Information: ```xml - com.destroystokyo.paper + io.papermc.paper paper-api - 1.16.5-R0.1-SNAPSHOT + 1.17-R0.1-SNAPSHOT provided ``` @@ -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) ------