Plugins in Maven and POM.xml

前端 未结 7 1165
无人及你
无人及你 2021-01-30 20:27

I just started using Maven and I read that plugins are additional components that can be used.
A typical structure of pom.xml file is



        
相关标签:
7条回答
  • 2021-01-30 20:55

    <plugin>should be placed into <plugins> section which should be placed into <build> or <pluginManagement> section. The order of <dependency> or <build> section doesn't matter.

    The full reference about pom.xml is here: http://maven.apache.org/pom.html

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