aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorJake Potrebic <[email protected]>2024-04-23 10:02:08 -0700
committerJake Potrebic <[email protected]>2024-04-23 10:02:08 -0700
commitabc49bf069cc52230e4b909b4264e5e3534ef853 (patch)
tree086cb86efffac15b85784c70c87612ad57698c8d /README.md
parentf4c7d373e4a1aff23539fe099745bf29a28559b9 (diff)
downloadPaper-abc49bf069cc52230e4b909b4264e5e3534ef853.tar.gz
Paper-abc49bf069cc52230e4b909b4264e5e3534ef853.zip
Begin update to 1.20.5
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 14b8aa097e..f11287dc07 100644
--- a/README.md
+++ b/README.md
@@ -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.