
R. K. Gayani D. answered 06/10/19
Specializing in AP Computer Science and Advanced Programming
The problem is that you can't create a project solely for the ProjectApp
module because it depends on the other modules below the ProjectApp
parent. If you don't deploy those modules to your maven repository, maven is not able to find them in the repository nor in the build reactor.
Instead you should create the job for the parent. This will build the necessary modules.
You may also work with the option also-make-dependants
when you have a job for ProjectApp
, but I haven't any experience with this.