admin管理员组

文章数量:1420120

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

Share Improve this question edited Jan 29 at 14:29 Shadow 34.3k10 gold badges65 silver badges75 bronze badges asked Jan 29 at 13:53 Anand HiremaniAnand Hiremani 1 1
  • Please provide enough code so others can better understand or reproduce the problem. – Community Bot Commented Jan 30 at 6:57
Add a comment  | 

1 Answer 1

Reset to default 0

Use

<!-- https://mvnrepository/artifact/com.mysql/mysql-connector-j -->
<dependency>
    <groupId>com.mysql</groupId>
    <artifactId>mysql-connector-j</artifactId>
    <version>9.2.0</version>
</dependency>

本文标签: repositoryMaven mysql dependency connectorStack Overflow