This maven projects
reads and authenticates CSV file and stores the record in a database
git clone https://github.com/gitpeters/csvFileReader.git
git add .
git commit -m"update"
git push
Add the following dependencies to the pom.xml
file
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.30</version>
</dependency>
fork https://github.com/gitpeters/csvFileReader.git
git pull
git add .
git checkout -b new_branch
git status
git commit -m"updated"
git push -u new_branch