我正在尝试使用我的 Spring Boot 项目从 Spring Loaded 开始,但不知道为什么它不想工作。我的 pom.xml 看起来像这样:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.6.RELEASE</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
在 IntelliJ Idea 中,它显示 springloaded 和红色版本为 NOT FOUND。我没有更改 pom.xml 中的任何其他内容。我应该以不同的方式添加它吗?