From f9a5429e48f3049a9f5b0fd0ac8d3be0688cdc87 Mon Sep 17 00:00:00 2001 From: Jakob K <52456572+bluefireoly@users.noreply.github.com> Date: Tue, 13 Jul 2021 16:34:57 +0200 Subject: [PATCH] Update the Gradle example script --- guide/docs/setup/gradle_example.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/docs/setup/gradle_example.md b/guide/docs/setup/gradle_example.md index a7679a58..44df94dd 100644 --- a/guide/docs/setup/gradle_example.md +++ b/guide/docs/setup/gradle_example.md @@ -4,10 +4,10 @@ An example for a `build.gradle.kts` file of a project using KSpigot would be: import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { - kotlin("jvm") version "1.5.10" + kotlin("jvm") version "1.5.21" } -group = "net.axay" +group = "your.group" version = "1.0-SNAPSHOT" repositories { @@ -17,7 +17,7 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.17-R0.1-SNAPSHOT") - implementation("net.axay:kspigot:1.17.1") + implementation("net.axay:kspigot:1.17.2") } tasks {