How to make maven build of child module with parent module?

后端 未结 2 590
我在风中等你
我在风中等你 2020-12-16 16:07

I have multiple modules in my project and they are dependent on each other either directly or transitively. When I maven build «Project A» some where «Project D» gets build

相关标签:
2条回答
  • 2020-12-16 16:31

    For a parent project Maven will build all child modules while building parent project. Add the modules to your parent pom. Assuming A is your parent project

      <modules>
        <module>projectB</module>
        <module>projectC</module>
        <module>projectD</module>
      </modules>
    

    and in modules (B,C and D), add project A as parent (This is optional, Thanks @Guillaume Polet)

     <parent>
       <groupId>foo.bar</groupId>
       <artifactId>ProjectA</artifactId>
       <version>1.0-SNAPSHOT</version>
     </parent>
    

    So if you build projectA, it will build ProjectB, ProjectC and ProjectD. Also maven is smart enough to figure out correct build order for B,C and D.

    0 讨论(0)
  • 2020-12-16 16:52

    You need to create an aggregator project. See the link for more information on the aggregation concept.

    Basically, you create a parent project containing several "modules". When building the parent, the modules automatically gets built as well.

    If you declare dependencies between the modules, Maven will automatically build the different modules in a correct order so that if «Project A» depends on «Project B», «Project B» is built first and then «Project A» is built so that its artifact is available for the building of the second artifact.

    See also this question from the Maven's FAQ.

    0 讨论(0)
提交回复
热议问题