Maven怎么会出现一个dependency-reduced-pom.xml的文件
问题
今天打包时突然发现,多出了一个名为dependency-reduced-pom.xml的文件
解决方法
由于使用了maven-shade-plugin插件导致的,在 <plugin> 标签下添加
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
即可
原文地址:https://blog.csdn.net/weixin_43278612/article/details/144713492
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!