Skip to content

Commit a9d5bd4

Browse files
committed
chore: fix nativeImageCapable flag
1 parent 8c9efba commit a9d5bd4

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ org-name = "suresh.dev"
2020
org-url = "https://suresh.dev"
2121

2222
# Dependency Versions
23-
bc-plugins = "1.27.0"
23+
bc-plugins = "1.28.0"
2424
kotlinx-kover = "0.9.1"
2525
kotlinx-bcv = "0.17.0"
2626
kotlin-dokka = "2.0.0"
@@ -30,7 +30,7 @@ kotlinx-coroutines = "1.10.2"
3030
kotlinx-datetime = "0.6.2"
3131
kotlinx-datetime-zoneinfo = "2025a-spi.0.6.2"
3232
kotlinx-serialization = "1.8.1"
33-
kotlinx-rpc = "0.6.0"
33+
kotlinx-rpc = "0.6.1"
3434
kotlinx-collections-immutable = "0.3.8"
3535
kotlinx-lincheck = "2.39"
3636
kotlinx-html = "0.12.0"
@@ -43,15 +43,15 @@ kotlin-wrappers = "2025.4.10"
4343
kotlin-redacted = "1.13.0"
4444
kotlin-serviceloader = "0.0.15"
4545
kotlinx-multik = "0.2.3"
46-
kotlinx-dataframe = "1.0.0-dev-6575"
46+
kotlinx-dataframe = "1.0.0-dev-6624"
4747
kotlinx-kandy = "0.8.0"
4848
kotlin-statistics = "0.4.0-RC1"
4949
evas = "1.2.0"
5050
kopy = "0.15.0+2.1.20"
5151
poko = "0.18.5"
52-
mappie = "2.1.20-1.2.2"
52+
mappie = "2.1.20-1.2.3"
5353
akkurate = "0.11.0"
54-
kaml = "0.76.0"
54+
kaml = "0.77.0"
5555
snakeyaml-engine-kmp = "3.1.1"
5656
konsist = "0.17.3"
5757
decoroutinator = "2.4.8"
@@ -172,7 +172,7 @@ xchart = "3.8.8"
172172
batik = "1.18"
173173
twelvemonkeys = "3.12.0"
174174
okapibarcode = "0.5.0"
175-
chasm = "0.9.65"
175+
chasm = "0.9.66"
176176
cel = "0.9.1"
177177
kfswatch = "1.3.0"
178178
kmp-process = "0.2.0"
@@ -198,11 +198,11 @@ jetbrains-compose-adaptive = "1.1.0-beta02"
198198
kobweb = "0.21.1"
199199
detekt = "1.23.8"
200200
detekt-compose-rules = "0.4.22"
201-
compose-hotreload = "1.0.0-alpha04"
201+
compose-hotreload = "1.0.0-alpha05"
202202
compose-icons = "1.1.1"
203203
compose-routing = "0.4.0"
204204
kottie = "2.0.1"
205-
mosaic = "0.16.0"
205+
mosaic = "0.17.0"
206206
filekit-dialogs = "0.10.0-beta01"
207207

208208
# NPM Dependencies

plugins/project/src/main/kotlin/common/ProjectExtns.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ fun KotlinTarget.setTargetAttribute() {
380380
fun JavaToolchainSpec.configureJvmToolchain(project: Project) =
381381
with(project) {
382382
languageVersion = toolchainVersion
383-
nativeImageCapable = toolchainVendor.map { it == JvmVendorSpec.GRAAL_VM }
383+
nativeImageCapable = toolchainVendor.map { it.matches("graalvm community") }
384384
// vendor = toolchainVendor
385385
}
386386

0 commit comments

Comments
 (0)