What is pluginManagement in Maven's pom.xml?

前端 未结 5 1083
野性不改
野性不改 2020-11-22 06:41

This is a snippet of my pom file.

....
        
            
                

        
5条回答
  •  礼貌的吻别
    2020-11-22 06:59

    pluginManagement: is an element that is seen along side plugins. Plugin Management contains plugin elements in much the same way, except that rather than configuring plugin information for this particular project build, it is intended to configure project builds that inherit from this one. However, this only configures plugins that are actually referenced within the plugins element in the children. The children have every right to override pluginManagement definitions.

    From http://maven.apache.org/pom.html#Plugin%5FManagement

    Copied from :

    Maven2 - problem with pluginManagement and parent-child relationship

提交回复
热议问题