Hello everyone. We are using Hazelcast in our Kotl...
# compiler
a
Hello everyone. We are using Hazelcast in our Kotlin project and Hazelcast asks for Java internal API, i.e. it asks to add these flags to javac
Copy code
--add-modules <http://java.se|java.se> --add-exports java.base/jdk.internal.ref=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.nio=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens java.management/sun.management=ALL-UNNAMED --add-opens jdk.management/com.sun.management.internal=ALL-UNNAMED --add-opens jdk.management/com.ibm.lang.management.internal=ALL-UNNAMED
Does anyone know, how to do something similar for Kotlin compiler? Is it possible at all? Maybe I'm missing something
g
Why do you need this for Kotlin compiler?
a
The reason is - i don't actually know, if I need it for Kotlin compiler. I just can't find a way how to open these modules for Hazelcast during project compilation
nvm, i found the issue. It's between the keyboard and the chair 😉