ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

新建springboot子模块时,pom文件project根标签会报红

2021-12-08 23:32:37  阅读:276  来源: 互联网

标签:xml springboot parent 会报 project pom 模块 relativePath POM


现象

project根标签报错

新建一个springboot的子模块的时候,此时parent是spring-boot-starter-parent,然后pom文件project根标签经常会报红

解决方法

parent标签里面加上属性

        <relativePath></relativePath>

截图:

原因

因为实际上springboot子模块真正的parent是spring-boot-starter-parent,但是貌似这个模块又是你现在项目的子模块,好像有些许关联

但其实你子模块加上parent,并不会完全跟你现在根项目没关系,如果你没有加上relativePath,maven还是会默认去找子模块目录下的pom文件对应的项目为父亲模块。

但是只是加上relativePath为空就没事了,他就回去找远程的pom文件对象的项目为父亲模块

relativePath的解释

The relative path of the parent pom.xml file within the check out. If not specified, it defaults to ../pom.xml. Maven looks for the parent POM first in this location on the filesystem, then the local repository, and lastly in the remote repo. relativePath allows you to select a different location, for example when your structure is flat, or deeper without an intermediate parent POM. However, the group ID, artifact ID and version are still required, and must match the file in the location given or it will revert to the repository for the POM. This feature is only for enhancing the development in a local checkout of that project. Set the value to an empty string in case you want to disable the feature and always resolve the parent POM from the repositories.
Default value is: ../pom.xml.

标签:xml,springboot,parent,会报,project,pom,模块,relativePath,POM
来源: https://www.cnblogs.com/cgengwei/p/15664952.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有