From 37dc33148865f641e7b16f9284564bc1abc67ad5 Mon Sep 17 00:00:00 2001 From: Jaime Wren Date: Wed, 27 Aug 2025 13:41:41 -0700 Subject: [PATCH] Resolve 2 Kotlin errors in build.gradle.kts --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 6943ae639..b4d969b10 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -279,7 +279,7 @@ tasks { // A task to print the classpath used for compiling an IntelliJ plugin // Run with `./gradlew printCompileClasspath --no-configuration-cache ` -tasks.register("printCompileClasspath") { +tasks.register("printCompileClasspath") { doLast { println("--- Begin Compile Classpath ---") configurations.getByName("compileClasspath").forEach { file -> @@ -291,7 +291,7 @@ tasks.register("printCompileClasspath") { // This finds the JxBrowser license key from the environment and writes it to a file. // This is only used by the dev build on kokoro for now. -val writeLicenseKey = tasks.register("writeLicenseKey") { +val writeLicenseKey = tasks.register("writeLicenseKey") { group = "build" description = "Writes the license key from an environment variable to a file."