-
Notifications
You must be signed in to change notification settings - Fork 4
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
https://github.com/dangeabunea/EasyCsv/releases/download/v1.0.1/easycsv-1.0.1.jar
In order to get this library via Maven, you need to add the following extracts to ypur pom.xml file:
- Link to the easycsv maven repository
...
<repositories>
<repository>
<id>easytools</id>
<url>http://www.easyrepository.com/maven2</url>
</repository>
</repositories>
...
- Add dependency
...
<dependency>
<groupId>easytools</groupId>
<artifactId>easycsv</artifactId>
<version>1.0.1</version>
</dependency>
...