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