diff options
author | Nassim Jahnke <[email protected]> | 2021-06-19 21:03:18 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-06-19 19:03:18 +0000 |
commit | bc4b23e389a80d3f5228688060cf1f610f58ea43 (patch) | |
tree | 72cc0d85c2cd16bc854ec666eb97d847c4afb11d /README.md | |
parent | 3d43c5e50077ac7fa1e68cf7a7add0ac77768a61 (diff) | |
download | Paper-bc4b23e389a80d3f5228688060cf1f610f58ea43.tar.gz Paper-bc4b23e389a80d3f5228688060cf1f610f58ea43.zip |
[CI-SKIP] Update README (#5882)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -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) ------ |