我在POM.xml中遇到弹出启动依赖的错误。 缺少工件org.springframework.boot:spring-boot-starter-parent:jar:1.3.2.RELEASE
我尝试了以下链接中给出的所有解决方案,但没有解决我的问题,请帮帮我.. Maven2: Missing artifact but jars are in place
答案 0 :(得分:23)
您收到此错误是因为spring-boot-starter-parent使用pom打包,因此在maven central中没有spring-boot-starter-parent的jar工件。原因是因为它打算用作父pom:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.2.RELEASE</version>
</parent>
或者,您可以导入托管依赖项,如果这是您打算执行的操作:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.2.RELEASE</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
您可以在Importing Dependencies section of the Introduction to the Dependency Mechanism文章中阅读有关导入依赖关系的更多信息。