java.lang.NoClassDefFoundError: org/apache/commons/csv/CSVFormat

13 Views Asked by At

I am building an app with Spring Boot that reads a CSV file with Apache Commons CSV.

When I try to run the app I receive the error:

java.lang.NoClassDefFoundError: org/apache/commons/csv/CSVFormat

... I have the next dependency in the pom.xml:

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-csv</artifactId>
    <version>1.9.0</version>
</dependency>
0

There are 0 best solutions below