I have project like
module1
module2
module3
submodule1
src
main
java
resources
child1
child2
module4
When I run mvn clean install on the project all top and submodules builds. But I want maven not to execute child1, child2. How I can do that. I found that using profiles I can do that. But how? Can I do something in submodule1 pom so that child1, child2 exclude from the maven phases ?
Yes that's easy enough. In
submodule1
's pom, by default you only include src:Then in a special profile, disabled by default, you build all of them
However, you should also investigate the
--also-make
and--also-make-depends
options, which might allow you to do what you want without any POM changes or extra profiles.