Maven的插件管理
Posted 李飞21
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven的插件管理相关的知识,希望对你有一定的参考价值。
<pluginManagement>
这个元素和<dependencyManagement>相类似,它是用来进行插件管理的。
在我们项目开发的过程中,也会频繁的引入插件,所以解决这些复杂配置的方法就是使用插件管理
我们可以在父POM中做如下声明:
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId></groupId>
- <artifactId></artifactId>
- <version></version>
- <executions> //插入点表达式
- <execution>
- <id></id>
- <goals>
- <goal></goal>
- </goals>
- <phase></phase>
- <configuration>
- <source></source>
- <target></target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
- </build></span>
在子模块中,我们可以直接继承
- <span style="font-size:12px;"><build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- </plugins>
- </build></span>
我们会发现,继承的细节上和<dependencyManagement>几乎一样。
以上是关于Maven的插件管理的主要内容,如果未能解决你的问题,请参考以下文章