Maven parent pom variables are not resolved

前端 未结 2 1647
梦毁少年i
梦毁少年i 2021-01-06 17:16

I have the following POM structure:

./foobar-common/pom.xml ./abc-window/pom.xml ./abc-datasource/pom.xml

Both abc-window pom.xml is as follows:



        
2条回答
  •  清酒与你
    2021-01-06 17:59

    The parent in abc-window is listed as:

        
                ../foobar-common/pom.xml
                hu.abc.ringcore
                foobar-common
                1.0
            
    

    The parent in abc-datasource is listed as:

    
        ../foobar-common/pom.xml
        hu.ratesoft.ringcore
        foobar-common
        1.0
    
    

    So, they do not have the same groupId.

提交回复
热议问题