I have maven project with flat structure. And the parent pom partially looks like this.
....
<modules>
<module>../module1</module>
<module>../module2</module>
</modules>
....
Problem
Till now I used to have one job and send one notification email only for the parent project. And this parent project builds all the modules. But now the modules increased and became too many to be handled by one person.
Question
I need to send a separate notification emails for each module without creating addition jobs for the modules.