- Create a simple maven project with archetype: "maven-archetype-quickstart".
- Add the following dependency in pom.xml file for MySQL Jdbc driver:
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
</dependency>
- Run this command in terminal:
mvn clean install