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...

  1. Open a multi-module project that has two modules (two-multi-module), namely common-one and dev-two.
  2. In the parent pom, add one project to the modules section:
      <modules>
          <module>common-one</module>
      </modules>
  3. Define a profile and include both modules:
    <profiles> <profile> <id>dev</id> <modules> <module>common-one</module> ...

Get Apache Maven Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.