Skip to content

Commit

Permalink
Switch r2dbc mysql driver to io.asyncer:r2dbc-mysql (#7043)
Browse files Browse the repository at this point in the history
`dev.miku:r2dbc-mysql` is not maintained anymore and `io.asyncer:r2dbc-mysql`
has continued the work about reactive mysql driver providing support
for v1.0.0
  • Loading branch information
eddumelendez committed May 30, 2023
1 parent d0ddcf8 commit 3a2ba5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/mysql/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ dependencies {
api project(':jdbc')

compileOnly project(':r2dbc')
compileOnly 'dev.miku:r2dbc-mysql:0.8.2.RELEASE'
compileOnly 'io.asyncer:r2dbc-mysql:0.9.0'

testImplementation project(':jdbc-test')
testImplementation 'mysql:mysql-connector-java:8.0.32'

testImplementation testFixtures(project(':r2dbc'))
testImplementation 'dev.miku:r2dbc-mysql:0.8.2.RELEASE'
testImplementation 'io.asyncer:r2dbc-mysql:0.9.0'

compileOnly 'org.jetbrains:annotations:24.0.1'
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.testcontainers.containers;

import com.google.auto.service.AutoService;
import dev.miku.r2dbc.mysql.MySqlConnectionFactoryProvider;
import io.asyncer.r2dbc.mysql.MySqlConnectionFactoryProvider;
import io.r2dbc.spi.ConnectionFactoryMetadata;
import io.r2dbc.spi.ConnectionFactoryOptions;
import org.testcontainers.r2dbc.R2DBCDatabaseContainer;
Expand Down

0 comments on commit 3a2ba5f

Please sign in to comment.