英文:
IntelliJ IDEA: maven reporting plugin issue
问题
自从IntelliJ 2020.1版本以来,我一直遇到一个问题,即IntelliJ会检查pom中是否存在报告配置。尽管我在任何项目的pom中都没有报告插件,但这不断地给我造成错误。下面是我Maven侧边栏中验证的截图。
英文:
Since intellij version 2020.1 I'm facing an issue where intellij is checking where reporting configuration is available in pom. This is causing errors for me constantly even though I have no reporting plugins in my pom in any of my projects. Here's an image of the validation in my maven sidebar.
答案1
得分: 1
错误是由新的Maven版本报告的,有一个相关的工单。您可以切换回旧的Maven版本(如3.3.9),这样就不会报告此错误,或者在pom.xml
中修复此错误。
英文:
The error is reported by the new Maven versions, there was a related ticket.
You can either switch back to the older Maven version (such as 3.3.9) which will not report this error or fix the error in pom.xml
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论