I want to be able to call a method in my jvmMain p...
# gradle
m
I want to be able to call a method in my jvmMain package (in the server module) from the cli module. I’ve tried including dependencies like
implementation(project(":server"))
, but it is unable to resolve or find the functions in that module… Is there a way to do this? Is there something I’m missing in my gradle.kts file? Or is it not possible to reference a method in a source set, within a multiplatform module from another module? Any help would be greatly appreciated.