MVN

net.cechacek.edu : pb162-csv-parser

Maven & Gradle

Apr 28, 2024
0 stars

Simple CSV Parser · Simple CSV Parser used as example maven dependency in pb162 course at FI MU.

<dependency>
    <groupId>net.cechacek.edu</groupId>
    <artifactId>pb162-csv-parser</artifactId>
    <version>0.2.0-final</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.cechacek.edu : pb162-csv-parser to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.2.0-final

All Versions

Choose a version of net.cechacek.edu : pb162-csv-parser to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.2.x
pb162-csv-parser-0.2.0-final

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"