我想使用 maven 的“部署”阶段将一些文件部署到我的设备(使用自定义 maven 插件),但我不需要 maven-deploy-plugin。
关于 stackoverflow 和网络的其他部分关于如何避免运行插件有几个答案,例如:
我试过设置<phase>none
,<skip>true
和<inherited>false
. 但是,插件仍然配置,失败并显示消息:
无法为 org.apache.maven.plugins maven-deploy-plugin 2.4 配置插件参数
因为我的 pom.xml 中没有distributionManagement-element。
有没有办法从 Maven 生命周期中完全删除依赖插件?