How to add a dependency to Maven
Add the following xyz.noark : noark-csv maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>xyz.noark</groupId>
<artifactId>noark-csv</artifactId>
<version>3.4.8.Final</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following xyz.noark : noark-csv gradle dependency to your build.gradle
file:
implementation 'xyz.noark:noark-csv:3.4.8.Final'
Gradle Kotlin DSL: Add the following xyz.noark : noark-csv gradle kotlin dependency to your build.gradle.kts
file:
implementation("xyz.noark:noark-csv:3.4.8.Final")
How to add a dependency to SBT Scala
SBT Scala: Add the following xyz.noark : noark-csv sbt scala dependency to your build.sbt
file:
libraryDependencies += "xyz.noark" % "noark-csv" % "3.4.8.Final"