How to compile dependency in maven?

后端 未结 3 1525
暖寄归人
暖寄归人 2020-12-15 07:05

Scenario:

I have a main level project A and within A , two child projects B and C worked on by different developers , but they agree on the abstraction through comm

3条回答
  •  南方客
    南方客 (楼主)
    2020-12-15 07:23

    List projects B and C as modules in the pom of the project A. Now when you build project A, it should build project B and C automatically and in the correct order.

    
        4.0.0
    
        multi
        A
        pom
        1.0
    
        
            B
            C
        
    
    

提交回复
热议问题