docs: Update gradle instructions for Java 16 (#6811) [ci skip]

Closes #6154.
This commit is contained in:
Alex 2021-10-21 11:04:17 +02:00 committed by GitHub
parent 7a0886180f
commit 5553432644
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 6 deletions

View File

@ -45,17 +45,19 @@ How To (Plugin Developers)
**Or alternatively, with Gradle:** **Or alternatively, with Gradle:**
* Repository: * Repository:
```groovy ```kotlin
repositories { repositories {
maven { maven {
url 'https://papermc.io/repo/repository/maven-public/' url = uri("https://papermc.io/repo/repository/maven-public/")
} }
} }
```
* Artifact:
```groovy
dependencies { dependencies {
compileOnly 'io.papermc.paper:paper-api:1.17.1-R0.1-SNAPSHOT' compileOnly("io.papermc.paper:paper-api:1.17.1-R0.1-SNAPSHOT")
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(16))
} }
``` ```