Skip to content

Commit 8370f59

Browse files
authored
Merge pull request #76 from TrueNine/dev
v0.0.46
2 parents e4dd1d1 + 02321b8 commit 8370f59

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

gradle-plugin/build.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
3143
gradlePlugin {
3244
plugins {
3345
register("composeserver-gradle-plugin") {

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ org-gradle = "9.2.0-rc-3"
3535
org-hibernate-orm = "7.2.0.CR1"
3636
org-jetbrains-dokka = "2.1.0"
3737
org-jetbrains-intellij-platform = "2.10.2"
38-
org-jetbrains-kotlin = "2.2.21"
38+
org-jetbrains-kotlin = "2.3.0-Beta2"
3939
org-jetbrains-kotlinx-coroutines = "1.10.2"
4040
org-jetbrains-kotlinx-datetime = "0.7.1-0.6.x-compat"
4141
org-jetbrains-kotlinx-io = "0.8.0"
@@ -54,7 +54,7 @@ org-springframework-modulith = "2.0.0-M1"
5454
org-springframework-security = "6.5.6"
5555
org-testcontainers = "1.21.3"
5656
org-testng = "7.11.0"
57-
project = "0.0.45"
57+
project = "0.0.46"
5858

5959
[libraries]
6060
ch-qos-logback-logback-classic = { module = "ch.qos.logback:logback-classic", version.ref = "ch-qos-logback" }

0 commit comments

Comments
 (0)