Skip to content

Commit

Permalink
[OC-49258] add mysql 8 connector on new snapshot (#286)
Browse files Browse the repository at this point in the history
* chore(pom): uprev snapshot

* chore(pom): uprev mysql connector
  • Loading branch information
johnjelinek authored Feb 23, 2024
1 parent 1965893 commit 37f0e9c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions jack-mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>

</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jack-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>

<dependency>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<db.user>root</db.user>
<db.pass>""</db.pass>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<revision>1.8-SNAPSHOT</revision>
<revision>1.9-SNAPSHOT</revision>
</properties>

<scm>
Expand All @@ -59,9 +59,9 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.49</version>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.0.33</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 37f0e9c

Please sign in to comment.