我在Spring Boot项目中遇到问题,它在pom.xml中有另一个Spring Boot项目作为依赖项。
我可以使用eclipse正确运行它,但是当我尝试使用命令mvn spring-boot:run
在终端上运行它时出现错误。
[ERROR] Failed to execute goal on project platform-service: Could not resolve dependencies for project com.test.platform:platform-service:jar:0.0.1-SNAPSHOT: Could not find artifact com.test:student-service:jar:exec:0.0.1-SNAPSHOT
这就是我在pom.xml中添加依赖项的方式:
<dependency>
<groupId>com.test</groupId>
<artifactId>student-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
我尝试了诸如mvn package spring-boot:repackage
之类的不同解决方案,但是没有用。
非常感谢您。
答案 0 :(得分:0)
在 pom.xml
中具有依赖性之后添加此插件<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
保存并再次运行。