The expression ${parent.version} is deprecated. Please use ${project.parent.version} instead.

港控/mmm° 2023-03-01 05:49 153阅读 0赞

背景:编译项目时控制台输出警告信息

[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.example:demo:war:1.0-SNAPSHOT
[WARNING] The expression ${parent.version} is deprecated. Please use ${project.parent.version} instead.
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.

解决方案:
修改pom.xml文件
修改${parent.version} 为 ${project.parent.version}

发表评论

表情:
评论列表 (有 0 条评论,153人围观)

还没有评论,来说两句吧...

相关阅读