-1

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

1
  • Please provide enough code so others can better understand or reproduce the problem. Commented Jan 30 at 6:57

1 Answer 1

0

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>
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.