From a54161d5ccd18fc655dff91223845d677b87d1b4 Mon Sep 17 00:00:00 2001 From: "leonid.stashevsky" Date: Thu, 11 Jan 2024 12:00:38 +0100 Subject: [PATCH] Update kotlin to 1.9.21 --- build.gradle.kts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index db6e8983..5e231171 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ import kotlinx.html.js.packageJson * -PversionTag - works together with "branch-build" profile and overrides "-SNAPSHOT" suffix of the version. */ plugins { - kotlin("multiplatform") version "1.9.10" + kotlin("multiplatform") version "1.9.21" id("maven-publish") id("signing") } @@ -92,7 +92,13 @@ kotlin { } js(IR) { moduleName = project.name - browser() + browser { + testTask { + useKarma { + useChromeHeadless() + } + } + } mavenPublication { groupId = group as String