diff options
author | Nassim Jahnke <[email protected]> | 2021-11-26 10:39:57 +0100 |
---|---|---|
committer | MiniDigger | Martin <[email protected]> | 2021-11-30 19:26:33 +0100 |
commit | a4d9687be89cba296572de1f5afc6457d42946c7 (patch) | |
tree | 5b0ef4b6364ae2f1642467368699ac66f716dc7a /README.md | |
parent | 7230cbbd551e6a3bc74d797e56e50d0bd687306c (diff) | |
download | Paper-a4d9687be89cba296572de1f5afc6457d42946c7.tar.gz Paper-a4d9687be89cba296572de1f5afc6457d42946c7.zip |
Update readme and contributing guidelines
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -19,7 +19,7 @@ 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) + * For a sneak peek on upcoming features, [see here](https://github.com/PaperMC/Paper/projects) How To (Plugin Developers) ------ @@ -38,7 +38,7 @@ How To (Plugin Developers) <dependency> <groupId>io.papermc.paper</groupId> <artifactId>paper-api</artifactId> - <version>1.17.1-R0.1-SNAPSHOT</version> + <version>1.18-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> ``` @@ -54,19 +54,19 @@ repositories { } dependencies { - compileOnly("io.papermc.paper:paper-api:1.17.1-R0.1-SNAPSHOT") + compileOnly("io.papermc.paper:paper-api:1.18-R0.1-SNAPSHOT") } java { - toolchain.languageVersion.set(JavaLanguageVersion.of(16)) + toolchain.languageVersion.set(JavaLanguageVersion.of(17)) } ``` How To (Compiling Jar From Source) ------ -To compile Paper, you need JDK 16 and an internet connection. +To compile Paper, you need JDK 17 and an internet connection. -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. +Clone this repo, run `./gradlew applyPatches`, then `./gradlew createReobfBundlerJar` 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`. |