I have a number of multi-module Maven projects all of which build continously. This is a well-known problem but none of the suggested solutions have helped.
- Turn off
Project->Build Automatically,Project->Clean... - Check
.projectfor multiplemaven2Builderentries
The project structure is
parent
+--model (jar)
+--client (jar)
+--restservice (war)
Both client and restservice have dependencies on model. These 2 modules build continuously but, as far as I can, tell they do not cause any changes in the model module.
Is there any way to track down what is causing this? Is there any tracing which might indicate what the trigger is?
Update
- I have executed the parent POM in a terminal and this runs successfully
- The Maven Workspace View shows all modules are continuously being built. The parent has no
executionbut has adeltawhich lists artifacts from all child modules
UPDATE
I have created a bare-bones example on github https://github.com/pramsden/openapiproblem which demonstates the endless build-loop problem.
