内容简介:以maven的形式创建Springboot会遇到pom.xml第一行报 maven Configuration problem 的问题, 而且没有任何的错误description. 网上有很多的解决办法, 比如L:但它并没有解决我的问题, 一番实验之后, 发现是在<parent>标签中的<version>2.1.5.RELEASE</version>的问题, 将2.1.5 改成2.1.4即可解决问题.maven中的parent标签声明了子项目继承的dependency, 并且是全继承, 即让子项目既继承pa
以maven的形式创建Springboot会遇到pom.xml第一行报 maven Configuration problem 的问题, 而且没有任何的错误description. 网上有很多的解决办法, 比如L: https://blog.csdn.net/wangyj1...
但它并没有解决我的问题, 一番实验之后, 发现是在
maven中的parent标签声明了子项目继承的dependency, 并且是全继承, 即让子项目既继承parent中的package, 又继承parent中package的版本.
与之对应的是DependencyManagement, DependencyManagement只控制子项目的版本, 如果用Dependencymanagement取代Parent的话, 则还需要写Dependency, 不需要写版本.
在这个case里, 将Parent的2.1.5版本改成2.1.4即可使用, 说明2.1.5的Parent中声明的Dependency有缺失, 细查之后修复即可
以上所述就是小编给大家介绍的《[Resolved] Springboot - Maven configration problem》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Writing Apache Modules with Perl and C
Lincoln Stein、Doug MacEachern / O'Reilly Media, Inc. / 1999-03 / USD 39.95
Apache is the most popular Web server on the Internet because it is free, reliable, and extensible. The availability of the source code and the modular design of Apache makes it possible to extend Web......一起来看看 《Writing Apache Modules with Perl and C》 这本书的介绍吧!