Skip to content

Commit 1892bf7

Browse files
committed
fix: invalid modules on modulepath in ssr module
Signed-off-by: Sam Gammon <sam@elide.ventures>
1 parent bed3695 commit 1892bf7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/ssr/build.gradle.kts

+5-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ dependencies {
5555

5656
jvm {
5757
api(mn.micronaut.http)
58-
implementation(libs.graalvm.polyglot)
58+
implementation("org.graalvm.polyglot:polyglot:${libs.versions.graalvm.pin.get()}") {
59+
exclude(group = "org.graalvm.sdk", module = "collections")
60+
exclude(group = "org.graalvm.sdk", module = "nativeimage")
61+
exclude(group = "org.graalvm.sdk", module = "word")
62+
}
5963
}
6064

6165
jvmTest {

0 commit comments

Comments
 (0)