大家好,我正在尝试为我的spring boot项目添加Apache commons-csv版本1.8依赖项,但遇到以下错误。 找不到依赖项“ org.apache.commons:commons-csv:1.8”。另外,我正在使用Java14。为便于参考,我还粘贴了pom.xml。
<properties>
<java.version>14</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
答案 0 :(得分:0)
右键单击项目,然后按照此导航 project-> maven-> reimport将对我有用
答案 1 :(得分:0)
右键单击项目文件夹-> Maven->重新加载项目。
对我有用
答案 2 :(得分:0)
对于Intellij Idea::转到Maven(右侧),然后按“重新导入所有Maven项目”。 它对我有用。