这是我的 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”标签中时,maven-dependency-plugin
当我启动install
目标时停止工作。为什么“pluginManagement”标签会改变构建行为?或者我应该使用另一个目标或选项?