Skip to content

Commit

Permalink
chore: use logback-classic dependency (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
ttosta-google committed Nov 13, 2023
1 parent ebc225e commit b88c69f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"dependencyDashboard": true,
"dependencyDashboardLabels": ["type: process"],
"ignoreDeps": [
"org.graalvm.sdk:graal-sdk"
"org.graalvm.sdk:graal-sdk",
"ch.qos.logback:logback-classic"
],
"packageRules": [
{
Expand Down
9 changes: 5 additions & 4 deletions alloydb-jdbc-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
</ignoredDependencies>
<usedDependencies>
<!-- This dependency is not used at compile-time. -->
<dependency>org.slf4j:slf4j-jdk14</dependency>
<dependency>ch.qos.logback:logback-classic</dependency>
</usedDependencies>
</configuration>
</plugin>
Expand Down Expand Up @@ -119,9 +119,10 @@
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.9</version>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.3.11</version>
<scope>test</scope>
</dependency>

<!-- Test dependencies -->
Expand Down

0 comments on commit b88c69f

Please sign in to comment.