how can i connect my maven to mysql dependency for version 8.0.39 which is not present in the maven repository
I saw in the maven repository the version is only upto the 8.0.33 for mysql connector version is 8.0.39 so how can i connect mysql to the maven
how can i connect my maven to mysql dependency for version 8.0.39 which is not present in the maven repository
I saw in the maven repository the version is only upto the 8.0.33 for mysql connector version is 8.0.39 so how can i connect mysql to the maven
Use
<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>9.2.0</version>
</dependency>