一、问题描述:
springboot已经在一个模块中导入其它模块,但却依然找不见该模块:
模块一的pom.xml文件:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.aaaaaaaa</groupId>
<artifactId>springboot-enable-other</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>```
其中,springboot-enable-other为其它Module的名称。
报错信息:
Could not find artifact com.itheima:springboot-enable-other:pom:0.0.1-SNAPSHOT
二、解决方案:
实际上就是设置里面的问题。把下面这里改成 不画对勾 的就行。