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