From 4bb836e805a22dfd1d9417e645a70c0100b7ca42 Mon Sep 17 00:00:00 2001 From: Erdragh Date: Mon, 27 May 2024 19:19:54 +0200 Subject: [PATCH] Update to gradle kotlin 2.0.0 to fix stackoverflow --- .github/workflows/build.yml | 2 +- build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8df721a..5dc0765 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: - name: Build with Gradle uses: gradle/gradle-build-action@v2 with: - arguments: build --stacktrace --info + arguments: build - name: Publish with Gradle if: ${{ github.event.inputs.publish }} diff --git a/build.gradle.kts b/build.gradle.kts index 9fb0007..30cebe5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { id("io.github.goooler.shadow") version "8.1.7" apply false // Since this mod/bot is written in Kotlin and expected to run on Minecraft and as such // the JVM, the Kotlin plugin is needed - kotlin("jvm") version "1.9.23" + kotlin("jvm") version "2.0.0" // For generating documentation based on comments in the code id("org.jetbrains.dokka") version "1.9.10" java