Skip to content

Commit 8839d15

Browse files
authored
fix: Provide required protobuf-java dependency for spanner (#1023)
* fix: Provide required protobuf-java dependency for spanner * fix: Forcing all test cases to run for java * fix: Forcing all test cases to run for java
1 parent 7bea95b commit 8839d15

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

java/pom.xml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<guava.version>32.0.0-jre</guava.version>
6060
<netty.version>4.1.92.Final</netty.version>
6161
<paranamer.version>2.8</paranamer.version>
62-
<protobuf.version>3.23.0</protobuf.version>
62+
<protobuf.version>3.25.0</protobuf.version>
6363
<zstd.version>1.4.9-1</zstd.version>
6464
<openlineage.version>1.19.0</openlineage.version>
6565
<grpc.version>1.55.1</grpc.version>
@@ -369,6 +369,11 @@
369369
<artifactId>spark-bigtable_${scala.binary.version}</artifactId>
370370
<version>${spark.bigtable.connector.version}</version>
371371
</dependency>
372+
<dependency>
373+
<groupId>com.google.protobuf</groupId>
374+
<artifactId>protobuf-java</artifactId>
375+
<version>${protobuf.version}</version>
376+
</dependency>
372377

373378
<!-- Spark Cassandra Connector -->
374379
<dependency>
@@ -492,16 +497,16 @@
492497
<artifactId>commons-cli</artifactId>
493498
<version>${commons.cli.version}</version>
494499
</dependency>
495-
<!-- <dependency>-->
496-
<!-- <groupId>org.json</groupId>-->
497-
<!-- <artifactId>json</artifactId>-->
498-
<!-- <version>${json.version}</version>-->
499-
<!-- </dependency>-->
500-
<!-- <dependency>-->
501-
<!-- <groupId>com.github.ben-manes.caffeine</groupId>-->
502-
<!-- <artifactId>caffeine</artifactId>-->
503-
<!-- <version>${caffeine.version}</version>-->
504-
<!-- </dependency>-->
500+
<!-- <dependency>-->
501+
<!-- <groupId>org.json</groupId>-->
502+
<!-- <artifactId>json</artifactId>-->
503+
<!-- <version>${json.version}</version>-->
504+
<!-- </dependency>-->
505+
<!-- <dependency>-->
506+
<!-- <groupId>com.github.ben-manes.caffeine</groupId>-->
507+
<!-- <artifactId>caffeine</artifactId>-->
508+
<!-- <version>${caffeine.version}</version>-->
509+
<!-- </dependency>-->
505510

506511
<!-- Java Test Libraries -->
507512
<dependency>

0 commit comments

Comments
 (0)