Skip to content

Commit f76113f

Browse files
committed
Exclude slf4j-api from alloydb dependency to correct logging behaviour
1 parent 7a43860 commit f76113f

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
@@ -174,7 +174,9 @@ dependencies {
174174
exclude group: 'org.slf4j', module: 'slf4j-api'
175175
}
176176
// The Java connector library used to establish simply a secure connection to AlloyDB on GCP
177-
implementation("com.google.cloud:alloydb-jdbc-connector:${alloyDbJdbcConnectorVersion}")
177+
implementation("com.google.cloud:alloydb-jdbc-connector:${alloyDbJdbcConnectorVersion}") {
178+
exclude group: 'org.slf4j', module: 'slf4j-api'
179+
}
178180
implementation "org.apache.commons:commons-text:${commonsTextVersion}"
179181
testImplementation platform("org.junit:junit-bom:${junitVersion}")
180182
testImplementation 'org.junit.jupiter:junit-jupiter'

0 commit comments

Comments
 (0)