From 5fdb753ae182d75d58025618df6dba5182c1a5ee Mon Sep 17 00:00:00 2001 From: geravant Date: Tue, 30 Jul 2024 15:20:54 +0200 Subject: [PATCH] fix (build.gradle.kts) kotlin plugin version updated to 1.9 --- build.gradle.kts | 3 ++- course-info.yaml | 14 ++++++++------ course-remote-info.yaml | 2 +- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index dacb20a..b8469fe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,8 @@ import org.jetbrains.kotlin.util.capitalizeDecapitalize.toLowerCaseAsciiOnly plugins { java - kotlin("jvm") version "1.7.10" apply true + val kotlinVersion = "1.9.0" + id("org.jetbrains.kotlin.jvm") version kotlinVersion apply false } fun printOutput(output: CharSequence): Task { diff --git a/course-info.yaml b/course-info.yaml index b20330e..c5c6cbe 100644 --- a/course-info.yaml +++ b/course-info.yaml @@ -11,9 +11,11 @@ vendor: url: https://www.jetbrains.com/ programming_language: Kotlin content: -- Warmup -- Queries and Incremental Updates -- Brute Force -- Divide and Conquer -- Greedy Algorithms -- Dynamic Programming + - Warmup + - Queries and Incremental Updates + - Brute Force + - Divide and Conquer + - Greedy Algorithms + - Dynamic Programming +environment_settings: + jvm_language_level: JDK_16 diff --git a/course-remote-info.yaml b/course-remote-info.yaml index fda7789..ae77ddd 100644 --- a/course-remote-info.yaml +++ b/course-remote-info.yaml @@ -1,3 +1,3 @@ id: 22214 -course_version: 4 +course_version: 6 generated_edu_id: Algorithmic Challenges in Kotlin_JetBrains_kotlin