什么是插件管理在 Maven 的 pom.xml?
2022-08-31 05:06:14
这是我的 pom 文件的一个片段。
....
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
......
</configuration>
</execution>
</executions>
</plugin>
</plugins>
...
我成功地使用它与命令
mvn install
但是,当我尝试将其包含在“pluginManagement”标签中时,当我启动目标时,它们将停止工作。为什么“pluginManagement”标签会改变构建行为?或者我应该使用其他目标或选项?maven-dependency-plugin
install