Skip to content

Commit

Permalink
Downgrade MySQL to version used in Quarkus BoM
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenWoltmann committed Oct 20, 2023
1 parent 6418bc6 commit a0006d5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions adapter/pom.xml
Expand Up @@ -33,8 +33,8 @@

<!-- Test scope -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions bootstrap/pom.xml
Expand Up @@ -47,8 +47,8 @@

<!-- Runtime -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -74,9 +74,9 @@
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.1.0</version>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
Expand Down

0 comments on commit a0006d5

Please sign in to comment.