Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/clients/grpc/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,21 +56,21 @@ TypeScript Declarations are included in the package.

#### Java

Add the `db-client-java` dependency to your Maven or Gradle project.
Add the `kurrentdb-client` dependency to your Maven or Gradle project.

::: tabs
@tab Maven
```xml
<dependency>
<groupId>io.kurrent</groupId>
<artifactId>db-client-java</artifactId>
<artifactId>kurrentdb-client</artifactId>
<version>1.0.0</version>
</dependency>
```

@tab Gradle
```groovy
implementation 'io.kurrent:db-client-java:1.0.0'
implementation 'io.kurrent:kurrentdb-client:1.0.0'
```

For the most recent version of the KurrentDB client package, see [Maven Central](https://mvnrepository.com/artifact/io.kurrent/kurrentdb-client).
Expand Down
6 changes: 3 additions & 3 deletions docs/clients/grpc/projections.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,21 @@ pnpm add @kurrent/kurrentdb-client

### Java

Add the `db-client-java` dependency to your project using Maven or Gradle.
Add the `kurrentdb-client` dependency to your project using Maven or Gradle.

::: tabs
@tab Maven
```xml
<dependency>
<groupId>io.kurrent</groupId>
<artifactId>db-client-java</artifactId>
<artifactId>kurrentdb-client</artifactId>
<version>1.0.0</version>
</dependency>
```

@tab Gradle
```
implementation 'io.kurrent:db-client-java:1.0.0'
implementation 'io.kurrent:kurrentdb-client:1.0.0'
```

For the most recent version of the KurrentDB client package, see [Maven Central](https://mvnrepository.com/artifact/io.kurrent/kurrentdb-client).
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ kurrentdbclient==1.0.19
```xml
<dependency>
<groupId>io.kurrent</groupId>
<artifactId>db-client-java</artifactId>
<artifactId>kurrentdb-client</artifactId>
<version>1.0.0</version>
</dependency>
```
Expand Down