com.mysql.jdbc.exceptions.mysqlNontransientConnectionException: le client ne prend pas en charge le protocole d'authentification demandé par serveur; Envisagez de mettre à niveau le client MySQL

 the version of mysql in pom.xml should be same as the version of mysql installed (mine is 8.0.14)
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.14</version>
Obedient Ostrich