I have a project that is composed of two different modules. I do not have control over the pom files of these modules and can therefore not change them. I have full control over the project pom file. Project id not defined as a parent in the modules.
Folder structure:
project
+ module1
+ module2
As part of a work around I need to execute two different goals for both modules, so that module1 gets installed into the local repository, but not module2. This is just an example. My actual problem contains more levels with more than 2 modules per level.
To minimize the configuration necessary for my CI system, I want to run this in one maven call.
I was "dreaming" of something along the lines of
mvn install -Dspecial=module:compile
Is this possible and if yes, how do I do that?