Unify MySQL driver versions in tests

This commit is contained in:
Tapac
2020-01-17 02:09:53 +03:00
parent bd1e5d3d47
commit dce5b5f157
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ dependencies {
"sqlserver" -> testImplementation("com.microsoft.sqlserver", "mssql-jdbc", "7.2.2.jre8")
else -> {
testImplementation("com.h2database", "h2", "1.4.199")
testImplementation("mysql", "mysql-connector-java", "5.1.47")
testImplementation("mysql", "mysql-connector-java", "5.1.48")
testImplementation("org.postgresql", "postgresql", "42.2.5.jre6")
}
}

View File

@@ -31,7 +31,7 @@ dependencies {
"sqlserver" -> testImplementation("com.microsoft.sqlserver", "mssql-jdbc", "7.2.2.jre8")
else -> {
testImplementation("com.h2database", "h2", "1.4.199")
testImplementation("mysql", "mysql-connector-java", "5.1.47")
testImplementation("mysql", "mysql-connector-java", "5.1.48")
testImplementation("org.postgresql", "postgresql", "42.2.5.jre6")
}
}