diff --git a/spring-batch-bigquery/pom.xml b/spring-batch-bigquery/pom.xml
index 537e2519..600985a8 100755
--- a/spring-batch-bigquery/pom.xml
+++ b/spring-batch-bigquery/pom.xml
@@ -22,7 +22,7 @@
org.springframework.boot
spring-boot-starter-parent
- 4.0.0
+ 4.0.1
@@ -64,7 +64,7 @@
com.google.cloud
google-cloud-bigquery
- 2.56.0
+ 2.57.1
@@ -182,7 +182,7 @@
org.testcontainers
junit-jupiter
- 1.21.3
+ 1.21.4
test
@@ -284,6 +284,7 @@
+
io.spring.javaformat
spring-javaformat-maven-plugin
diff --git a/spring-batch-bigquery/src/main/java/org/springframework/batch/extensions/bigquery/reader/BigQueryQueryItemReader.java b/spring-batch-bigquery/src/main/java/org/springframework/batch/extensions/bigquery/reader/BigQueryQueryItemReader.java
index f6147cb2..81ec07d5 100755
--- a/spring-batch-bigquery/src/main/java/org/springframework/batch/extensions/bigquery/reader/BigQueryQueryItemReader.java
+++ b/spring-batch-bigquery/src/main/java/org/springframework/batch/extensions/bigquery/reader/BigQueryQueryItemReader.java
@@ -95,7 +95,7 @@ public void setJobConfiguration(final QueryJobConfiguration jobConfiguration) {
}
@Override
- public T read() throws Exception {
+ public T read() throws InterruptedException {
if (iterator == null) {
doOpen();
}
@@ -107,7 +107,7 @@ public T read() throws Exception {
return iterator.hasNext() ? rowMapper.convert(iterator.next()) : null;
}
- private void doOpen() throws Exception {
+ private void doOpen() throws InterruptedException {
if (logger.isDebugEnabled()) {
logger.debug("Executing query");
}