If you are using Maven, simply copy the following dependency into your pom.xml file. The artifact is hosted at Maven Central, and is standalone (no dependencies).
<dependency>
<groupId>net.sf.supercsv</groupId>
<artifactId>super-csv</artifactId>
<version>2.1.0</version>
</dependency>If you wish to use the new Dozer extension (with deep mapping and index-based mapping support), then you will also need the following:
<dependency>
<groupId>net.sf.supercsv</groupId>
<artifactId>super-csv-dozer</artifactId>
<version>2.1.0</version>
</dependency>You can download the latest distribution zip file from SourceForge, which contains:
| File | Description |
|---|---|
| super-csv/super-csv-2.1.0.jar | Super CSV 2.1.0 (compiled classes only) |
| super-csv/super-csv-2.1.0-sources.jar | The Super CSV source code |
| super-csv/super-csv-2.1.0-javadoc.jar | The Super CSV Javadoc documentation |
| super-csv-dozer/super-csv-dozer-2.1.0.jar | Super CSV Dozer extension 2.1.0 (compiled classes only) |
| super-csv-dozer/super-csv-dozer-2.1.0-sources.jar | The Super CSV Dozer extension source code |
| super-csv-dozer/super-csv-dozer-2.1.0-javadoc.jar | The Super CSV Dozer extension Javadoc documentation |
| super-csv-dozer/lib | The Super CSV Dozer extension's dependencies (including Dozer) |