Skip to content

2 Installation

Dan Geabunea edited this page Apr 6, 2015 · 3 revisions

The latest version of EasyCSV can be downloaded and integrated into your project by using the approaches described bellow

Using JAR

https://github.com/dangeabunea/EasyCsv/releases/download/v1.0.1/easycsv-1.0.1.jar

Using Maven

In order to get this library via Maven, you need to add the following extracts to ypur pom.xml file:

  1. Link to the easycsv maven repository
...
<repositories>
    <repository>
        <id>easytools</id>
        <url>http://www.easyrepository.com/maven2</url>
    </repository>
</repositories>
...
  1. Add dependency
...
<dependency>
    <groupId>easytools</groupId>
    <artifactId>easycsv</artifactId>
    <version>1.0.1</version>
</dependency>
...
Clone this wiki locally