无法为Apache Commons-csv添加maven依赖关系。

问题描述 投票:-1回答:1

嗨,大家好,我正在尝试为我的spring boot项目添加Apache commons-csv 1.8版本的依赖,但得到以下错误信息:没有找到依赖'org.apache.commons:commons-csv:1.8'。我使用的是Java 14.这里我也粘贴了我的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>

java spring spring-boot maven maven-plugin
1个回答
0
投票

右键点击项目,然后按照这个导航project->maven->重新导入就可以了。


0
投票

右键点击你的项目文件夹-> Maven -> Reload Project。

这对我来说很有用

© www.soinside.com 2019 - 2024. All rights reserved.