This IDEA plugin is no longer developed because IntelliJ now includes its own runtyfig Jetty team.
Here's what worked for me with the multi-module Maven project: In the file, project structure, modules I have all the modules compiled with the same output path ("Use the compile compilation path of the module"). I chose the path "... WEB-INF \ classes" in the folder of the Jetty Deployment folder. Then I must also say that IDEA does not clear output directories when compiling. Otherwise, each module that compiles (one by one) clears the classes from the previous one. Settings, compiler, uncheck "Clear output directory during rebuild."
In addition, I had to first put all my external (maven) dependency bans in the "... WEB-INF \ lib" folder.
Yes, itβs hacked, but it works. If anyone has a better, cleaner solution, I would be interested to know.
source share