Skip to content

Commit c871dca

Browse files
authored
[bq] upgrade dependencies
1 parent c076942 commit c871dca

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

spring-batch-bigquery/pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -51,31 +51,31 @@
5151

5252
<!-- Dependent on Spring Batch core -->
5353
<java.version>17</java.version>
54-
<logback.version>1.4.11</logback.version>
54+
<logback.version>1.4.14</logback.version>
5555
</properties>
5656

5757
<dependencies>
5858
<dependency>
5959
<groupId>org.springframework.batch</groupId>
6060
<artifactId>spring-batch-core</artifactId>
61-
<version>5.0.3</version>
61+
<version>5.1.0</version>
6262
</dependency>
6363

6464
<dependency>
6565
<groupId>com.google.cloud</groupId>
6666
<artifactId>google-cloud-bigquery</artifactId>
67-
<version>2.31.1</version>
67+
<version>2.35.0</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>com.fasterxml.jackson.dataformat</groupId>
7171
<artifactId>jackson-dataformat-csv</artifactId>
72-
<version>2.15.2</version>
72+
<version>2.16.0</version>
7373
</dependency>
7474

7575
<dependency>
7676
<groupId>org.apache.commons</groupId>
7777
<artifactId>commons-lang3</artifactId>
78-
<version>3.13.0</version>
78+
<version>3.14.0</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>org.apache.commons</groupId>
@@ -88,13 +88,13 @@
8888
<dependency>
8989
<groupId>org.junit.jupiter</groupId>
9090
<artifactId>junit-jupiter-api</artifactId>
91-
<version>5.10.0</version>
91+
<version>5.10.1</version>
9292
<scope>test</scope>
9393
</dependency>
9494
<dependency>
9595
<groupId>org.mockito</groupId>
9696
<artifactId>mockito-core</artifactId>
97-
<version>5.5.0</version>
97+
<version>5.8.0</version>
9898
<scope>test</scope>
9999
</dependency>
100100
<dependency>
@@ -112,7 +112,7 @@
112112
<dependency>
113113
<groupId>org.slf4j</groupId>
114114
<artifactId>slf4j-api</artifactId>
115-
<version>2.0.7</version>
115+
<version>2.0.9</version>
116116
<scope>test</scope>
117117
</dependency>
118118

@@ -136,7 +136,7 @@
136136
<plugin>
137137
<groupId>org.apache.maven.plugins</groupId>
138138
<artifactId>maven-surefire-plugin</artifactId>
139-
<version>3.1.2</version>
139+
<version>3.2.2</version>
140140
<configuration>
141141
<includes>
142142
<!-- Integration tests are omitted because they are designed to be run locally -->
@@ -149,7 +149,7 @@
149149
<plugin>
150150
<groupId>org.apache.maven.plugins</groupId>
151151
<artifactId>maven-javadoc-plugin</artifactId>
152-
<version>3.5.0</version>
152+
<version>3.6.3</version>
153153
<executions>
154154
<execution>
155155
<id>attach-javadocs</id>

spring-batch-bigquery/src/test/resources/logback.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<configuration>
2+
<import class="ch.qos.logback.core.status.NopStatusListener"/>
3+
<import class="ch.qos.logback.core.ConsoleAppender"/>
24

3-
<statusListener class="ch.qos.logback.core.status.NopStatusListener"/>
5+
<statusListener class="NopStatusListener"/>
46

57
<!-- Send debug messages to System.out -->
6-
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
8+
<appender name="STDOUT" class="ConsoleAppender">
79
<!-- By default, encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder -->
810
<encoder>
911
<pattern>%d{HH:mm:ss.SSS} [%thread] %yellow(%-5level) %magenta(%logger{5}) : %msg%n</pattern>

0 commit comments

Comments
 (0)