Selectively building modules
When a project has a number of modules, there may be situations when we might want to selectively build modules. One such situation could be because the module might run only on specific machines. Another reason could be that a module may have long-running tests that may make sense only in test servers.
Let us see how we can selectively build modules by using the profile feature of Maven.
How to do it...
Open a multi-module project that has two modules (
two-multi-module
), namelycommon-one
anddev-two
.In the parent pom, add one project to the
modules
section:<modules> <module>common-one</module> </modules>
Define a profile and include both modules:
<profiles> <profile> <id>dev</id> <modules> <module>common-one</module> <module>dev-two</module> </modules> </profile> </profiles>
Run the Maven...