Skip to content

Commit

Permalink
Fix qdrant autoconfig test issue
Browse files Browse the repository at this point in the history
Need to provide grpc-api dependency in provided scope for compilation/test

Signed-off-by: Soby Chacko <[email protected]>
  • Loading branch information
sobychacko committed Feb 27, 2025
1 parent 88f5a0d commit 778c890
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
<developerConnection>[email protected]:spring-projects/spring-ai.git</developerConnection>
</scm>

<properties>
<grpc.version>1.65.1</grpc.version>
</properties>
<dependencies>
<!-- production dependencies -->
<dependency>
Expand All @@ -45,6 +48,13 @@
<version>${project.parent.version}</version>
<optional>true</optional>
</dependency>
<!-- Add the specific gRPC dependency needed for compilation -->
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
<version>${grpc.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
Expand Down

0 comments on commit 778c890

Please sign in to comment.