I\'m working on a mixed java and kotlin project by using maven.
The problem I\'m facing right now is, maven-compiler-plugin runs before compiling kotl
maven-compiler-plugin
kotl
In case you are open to using a different build system, dependent projects are easy to set up with Kobalt:
val p1 = javaProject { ... } val p2 = kotlinProject(p1) { ... }
This makes project p2 depend on p1. You can also mix Java and Kotlin projects.
p2
p1