Skip to content

Commit eba0c63

Browse files
authored
Fix Slf4j providers not found error (#2420)
1 parent 8155eba commit eba0c63

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ dependencies {
107107
implementation "com.microsoft.sqlserver:mssql-jdbc:${sqlserverDriverVersion}"
108108
implementation "org.xerial:sqlite-jdbc:${sqliteDriverVersion}"
109109
implementation "com.yugabyte:jdbc-yugabytedb:${yugabyteDriverVersion}"
110-
implementation "org.mariadb.jdbc:mariadb-java-client:${mariadDbDriverVersion}"
110+
implementation ("org.mariadb.jdbc:mariadb-java-client:${mariadDbDriverVersion}") {
111+
exclude group: 'org.slf4j', module: 'slf4j-api'
112+
}
111113
implementation "org.apache.commons:commons-text:${commonsTextVersion}"
112114
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
113115
testImplementation "org.junit.jupiter:junit-jupiter-params:${junitVersion}"

0 commit comments

Comments
 (0)