这是我的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”标签会更改构建行为?还是应该使用其他目标或选择?

最佳答案

您仍然需要添加

<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
    </plugin>
</plugins>


在您的构建中,因为pluginManagement仅是在所有项目模块之间共享相同插件配置的一种方法。

从Maven文档中:


  pluginManagement:是在侧面插件中可以看到的元素。插件管理包含插件元素的方式几乎相同,除了它不是为该特定项目构建配置插件信息,而是要配置从此继承的项目构建。但是,这仅配置在子级的plugins元素中实际引用的插件。子级有权覆盖pluginManagement定义。

09-26 04:11