How to skip maven child module build

3.1k Views Asked by At

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 ?

1

There are 1 best solutions below

3
On

Yes that's easy enough. In submodule1's pom, by default you only include src:

<modules>
    <module>src</module>
</modules>

Then in a special profile, disabled by default, you build all of them

<profiles>
    <profile>
        <id>src-extra</id>
        <modules>
            <module>src</module>
            <module>child1</module>
            <module>child1</module>
        </modules>
    </profile>
</profiles>

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.