Skip to content

Commit 0c25714

Browse files
Open "java.net" for reflection (#2058)
1 parent 585c62d commit 0c25714

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ allprojects {
6969
"--add-opens", "java.base/java.text=ALL-UNNAMED",
7070
"--add-opens", "java.base/java.io=ALL-UNNAMED",
7171
"--add-opens", "java.base/java.nio=ALL-UNNAMED",
72+
"--add-opens", "java.base/java.net=ALL-UNNAMED",
7273
"--add-opens", "java.base/sun.security.util=ALL-UNNAMED",
7374
"--add-opens", "java.base/sun.reflect.generics.repository=ALL-UNNAMED",
7475
"--add-opens", "java.base/java.security=ALL-UNNAMED",

utbot-framework-api/src/main/kotlin/org/utbot/framework/process/OpenModulesContainer.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ object OpenModulesContainer {
1717
openPackage("java.base", "sun.reflect.generics.repository")
1818
openPackage("java.base", "java.io")
1919
openPackage("java.base", "java.nio")
20+
openPackage("java.base", "java.net")
2021
openPackage("java.base", "java.lang")
2122
openPackage("java.base", "java.security")
2223
openPackage("java.base", "java.util")

0 commit comments

Comments
 (0)