Skip to content

Commit 94a070f

Browse files
committed
Fixed ExceptionInInitializerError #194
1 parent 49b9d54 commit 94a070f

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

build.gradle.kts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ dependencies {
3636
implementation(libs.alimt)
3737
implementation(compose.desktop.currentOs)
3838
implementation(compose.material3)
39+
implementation(compose.materialIconsExtended)
3940
implementation(compose.foundation)
4041

4142
compileOnly(libs.autoServiceAnnotations)
@@ -52,8 +53,16 @@ dependencies {
5253
providers.gradleProperty("platformVersion"),
5354
)
5455

56+
// Compose support dependencies
57+
bundledModules(
58+
"intellij.libraries.skiko",
59+
"intellij.libraries.compose.foundation.desktop",
60+
"intellij.platform.jewel.foundation",
61+
"intellij.platform.jewel.ui",
62+
"intellij.platform.jewel.ideLafBridge",
63+
"intellij.platform.compose",
64+
)
5565
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',').filter(String::isNotBlank) })
56-
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',').filter(String::isNotBlank) })
5766
plugins(providers.gradleProperty("platformPlugins").map { it.split(',').filter(String::isNotBlank) })
5867

5968
testFramework(TestFrameworkType.JUnit5)

gradle.properties

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ platformVersion = 2025.1.5
1818
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1919
# Example: platformBundledPlugins = com.intellij.java
2020
platformBundledPlugins = com.intellij.java
21-
# Example: platformBundledModules = intellij.spellchecker
22-
platformBundledModules =
2321
# Example: platformPlugins = com.jetbrains.php:203.4449.22
2422
platformPlugins =
2523

0 commit comments

Comments
 (0)