Skip to content
This repository has been archived by the owner on Jun 27, 2020. It is now read-only.

Latest commit

 

History

History
41 lines (34 loc) · 1.53 KB

README.md

File metadata and controls

41 lines (34 loc) · 1.53 KB

Apache Commons CSV

This library is a fork of the Apache Commons CSV.

Additionally, it has following changes:

  • Added module-info.java and requires Java 11.
  • Replace Assertions notNull() usage with Objects requireNonNull()
  • Remove dependency on java.sql module and remove unnecessary boxing

Documentation: Latest javadocs is available here.

Download

To add a dependency using Maven, use the following:

<dependency>
    <groupId>io.github.pustike</groupId>
    <artifactId>commons-csv</artifactId>
    <version>1.7.0</version>
</dependency>

To add a dependency using Gradle:

dependencies {
    compile 'io.github.pustike:commons-csv:1.7.0'
}

Or, download the latest JAR

License

This library is published under the Apache License, Version 2.0