diff options
author | Jake Potrebic <[email protected]> | 2024-04-23 10:02:08 -0700 |
---|---|---|
committer | Jake Potrebic <[email protected]> | 2024-04-23 10:02:08 -0700 |
commit | abc49bf069cc52230e4b909b4264e5e3534ef853 (patch) | |
tree | 086cb86efffac15b85784c70c87612ad57698c8d /README.md | |
parent | f4c7d373e4a1aff23539fe099745bf29a28559b9 (diff) | |
download | Paper-abc49bf069cc52230e4b909b4264e5e3534ef853.tar.gz Paper-abc49bf069cc52230e4b909b4264e5e3534ef853.zip |
Begin update to 1.20.5
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -40,7 +40,7 @@ How To (Plugin Developers) <dependency> <groupId>io.papermc.paper</groupId> <artifactId>paper-api</artifactId> - <version>1.20.4-R0.1-SNAPSHOT</version> + <version>1.20.5-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> ``` @@ -53,17 +53,17 @@ repositories { } dependencies { - compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT") + compileOnly("io.papermc.paper:paper-api:1.20.5-R0.1-SNAPSHOT") } java { - toolchain.languageVersion.set(JavaLanguageVersion.of(17)) + toolchain.languageVersion.set(JavaLanguageVersion.of(21)) } ``` How To (Compiling Jar From Source) ------ -To compile Paper, you need JDK 17 and an internet connection. +To compile Paper, you need JDK 21 and an internet connection. Clone this repo, run `./gradlew applyPatches`, then `./gradlew createReobfBundlerJar` from your terminal. You can find the compiled jar in the project root's `build/libs` directory. |