File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,18 @@ dependencies {
2828 testImplementation(libs.org.junit.platform.junit.platform.suite)
2929}
3030
31+ tasks.withType<Test >().configureEach {
32+ jvmArgs =
33+ listOf (
34+ " --add-opens" ,
35+ " java.base/java.lang=ALL-UNNAMED" ,
36+ " --add-opens" ,
37+ " java.base/java.util=ALL-UNNAMED" ,
38+ " --add-opens" ,
39+ " java.base/java.lang.invoke=ALL-UNNAMED" ,
40+ )
41+ }
42+
3143gradlePlugin {
3244 plugins {
3345 register(" composeserver-gradle-plugin" ) {
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ org-gradle = "9.2.0-rc-3"
3535org-hibernate-orm = " 7.2.0.CR1"
3636org-jetbrains-dokka = " 2.1.0"
3737org-jetbrains-intellij-platform = " 2.10.2"
38- org-jetbrains-kotlin = " 2.2.21 "
38+ org-jetbrains-kotlin = " 2.3.0-Beta2 "
3939org-jetbrains-kotlinx-coroutines = " 1.10.2"
4040org-jetbrains-kotlinx-datetime = " 0.7.1-0.6.x-compat"
4141org-jetbrains-kotlinx-io = " 0.8.0"
@@ -54,7 +54,7 @@ org-springframework-modulith = "2.0.0-M1"
5454org-springframework-security = " 6.5.6"
5555org-testcontainers = " 1.21.3"
5656org-testng = " 7.11.0"
57- project = " 0.0.45 "
57+ project = " 0.0.46 "
5858
5959[libraries ]
6060ch-qos-logback-logback-classic = { module = " ch.qos.logback:logback-classic" , version.ref = " ch-qos-logback" }
You can’t perform that action at this time.
0 commit comments