我试图用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中的任何其他内容。我应该以某种方式添加它吗?
答案 0 :(得分:1)
我试了一下。 IntelliJ IDEA 2017.1.5不会安装到插件中声明的本地存储库依赖项。所以你可以通过内置的Maven工具(View-&gt; Tool Windows-&gt; Maven Projects)或命令行来运行:
mvn install
然后使用内置maven工具重新导入依赖项。