Can you make another module a "friend" from within...
# gradle
c
Can you make another module a "friend" from within the Kotlin JVM plugin, or do you have to do it through the Java plugin? I'm talking about Java 9+'s
module com.example.app { exports com.example.entities; }
, but since Kotlin has its own "internal" system, I want to make sure I'm not missing something there.
e
friend modules have nothing to do with JPMS