Skip to content

Commit

Permalink
fix: Provide required protobuf-java dependency for spanner
Browse files Browse the repository at this point in the history
  • Loading branch information
rajc242 committed Nov 12, 2024
1 parent 3c5dc82 commit f0d31bb
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<guava.version>32.0.0-jre</guava.version>
<netty.version>4.1.92.Final</netty.version>
<paranamer.version>2.8</paranamer.version>
<protobuf.version>3.23.0</protobuf.version>
<protobuf.version>3.25.0</protobuf.version>
<zstd.version>1.4.9-1</zstd.version>
<openlineage.version>1.19.0</openlineage.version>
<grpc.version>1.55.1</grpc.version>
Expand Down Expand Up @@ -369,6 +369,11 @@
<artifactId>spark-bigtable_${scala.binary.version}</artifactId>
<version>${spark.bigtable.connector.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobuf.version}</version>
</dependency>

<!-- Spark Cassandra Connector -->
<dependency>
Expand Down Expand Up @@ -492,16 +497,16 @@
<artifactId>commons-cli</artifactId>
<version>${commons.cli.version}</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.json</groupId>-->
<!-- <artifactId>json</artifactId>-->
<!-- <version>${json.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.github.ben-manes.caffeine</groupId>-->
<!-- <artifactId>caffeine</artifactId>-->
<!-- <version>${caffeine.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.json</groupId>-->
<!-- <artifactId>json</artifactId>-->
<!-- <version>${json.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.github.ben-manes.caffeine</groupId>-->
<!-- <artifactId>caffeine</artifactId>-->
<!-- <version>${caffeine.version}</version>-->
<!-- </dependency>-->

<!-- Java Test Libraries -->
<dependency>
Expand Down

0 comments on commit f0d31bb

Please sign in to comment.