Fix version in docs

This commit is contained in:
Dave Syer
2025-04-17 15:57:11 +01:00
parent 132fd2c364
commit b507f29d41
2 changed files with 4 additions and 4 deletions

View File

@@ -201,7 +201,7 @@ If youre a Maven user, you can use the dependencies by adding the following t
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>0.8.0-SNAPSHOT-SNAPSHOT</version>
<version>0.8.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -215,7 +215,7 @@ As shown in the snippet below this can then be followed by version-less declarat
```gradle
dependencies {
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT-SNAPSHOT")
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT")
}
```

View File

@@ -206,7 +206,7 @@ If youre a Maven user, you can use the dependencies by adding the following t
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>0.8.0-SNAPSHOT-SNAPSHOT</version>
<version>0.8.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -221,7 +221,7 @@ As shown in the snippet below this can then be followed by version-less declarat
[source,gradle]
----
dependencies {
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT-SNAPSHOT")
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT")
}
----