Skip to content

Commit

Permalink
ORG: Add apache commons-io dependency to avoid class not found error …
Browse files Browse the repository at this point in the history
…when reading CSV

- Somehow commons-csv does not automatically pull in its dependency on commons-io.
  • Loading branch information
munterfi committed Nov 5, 2024
1 parent 63c39b8 commit 11345dd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,11 @@
<artifactId>commons-csv</artifactId>
<version>1.11.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.17.0</version>
</dependency>
<!-- spring boot rest app -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 11345dd

Please sign in to comment.