Skip to content

Commit d6f75ce

Browse files
authored
fix: change gRPC dependencies from implementation to api (#93)
Signed-off-by: Anush008 <[email protected]>
1 parent b290b14 commit d6f75ce

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,20 @@ To install the library, add the following lines to your build config file.
3838
<dependency>
3939
<groupId>io.qdrant</groupId>
4040
<artifactId>client</artifactId>
41-
<version>1.16.0</version>
41+
<version>1.16.1</version>
4242
</dependency>
4343
```
4444

4545
#### SBT
4646

4747
```sbt
48-
libraryDependencies += "io.qdrant" % "client" % "1.16.0"
48+
libraryDependencies += "io.qdrant" % "client" % "1.16.1"
4949
```
5050

5151
#### Gradle
5252

5353
```gradle
54-
implementation 'io.qdrant:client:1.16.0'
54+
implementation 'io.qdrant:client:1.16.1'
5555
```
5656

5757
> [!NOTE]

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def jUnitVersion = '5.10.2'
8888
dependencies {
8989
errorprone "com.uber.nullaway:nullaway:0.10.18"
9090

91-
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
92-
implementation "io.grpc:grpc-stub:${grpcVersion}"
91+
api "io.grpc:grpc-protobuf:${grpcVersion}"
92+
api "io.grpc:grpc-stub:${grpcVersion}"
9393
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
9494

9595
compileOnly "org.apache.tomcat:annotations-api:6.0.53"

example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repositories {
1313

1414
dependencies {
1515
// Qdrant Java client
16-
implementation 'io.qdrant:client:1.16.0'
16+
implementation 'io.qdrant:client:1.16.1'
1717

1818
// gRPC dependencies - use the same version as Qdrant client
1919
implementation 'io.grpc:grpc-netty-shaded:1.65.1'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ qdrantProtosVersion=v1.16.0
55
qdrantVersion=v1.16.0
66

77
# The version of the client to generate
8-
packageVersion=1.16.0
8+
packageVersion=1.16.1

0 commit comments

Comments
 (0)