Skip to content

Commit 7284639

Browse files
author
Dave Syer
committed
Revert to snapshots
1 parent 2d2e0d8 commit 7284639

File tree

15 files changed

+23
-23
lines changed

15 files changed

+23
-23
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
7070
<dependency>
7171
<groupId>org.springframework.ai</groupId>
7272
<artifactId>spring-grpc-dependencies</artifactId>
73-
<version>0.1.0</version>
73+
<version>0.2.0-SNAPSHOT</version>
7474
<type>pom</type>
7575
<scope>import</scope>
7676
</dependency>
@@ -84,7 +84,7 @@ As shown in the snippet below this can then be followed by version-less declarat
8484

8585
```gradle
8686
dependencies {
87-
implementation platform("org.springframework.ai:spring-grpc-dependencies:0.1.0")
87+
implementation platform("org.springframework.ai:spring-grpc-dependencies:0.2.0-SNAPSHOT")
8888
}
8989
```
9090

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.springframework.grpc</groupId>
77
<artifactId>spring-grpc</artifactId>
8-
<version>0.1.0</version>
8+
<version>0.2.0-SNAPSHOT</version>
99

1010
<packaging>pom</packaging>
1111
<url>https://github.com/spring-projects-experimental/spring-grpc</url>

samples/grpc-server-netty-shaded/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.1.0'
10+
version = '0.2.0-SNAPSHOT'
1111

1212
java {
1313
toolchain {
@@ -24,7 +24,7 @@ repositories {
2424

2525
dependencyManagement {
2626
imports {
27-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.1.0'
27+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.2.0-SNAPSHOT'
2828
}
2929
}
3030

samples/grpc-server-netty-shaded/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>com.example</groupId>
1313
<artifactId>grpc-server-netty-shaded</artifactId>
14-
<version>0.1.0</version>
14+
<version>0.2.0-SNAPSHOT</version>
1515
<name>grpc-server-netty-shaded</name>
1616
<description>Demo project for Spring Boot</description>
1717
<properties>
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>org.springframework.grpc</groupId>
2727
<artifactId>spring-grpc-dependencies</artifactId>
28-
<version>0.1.0</version>
28+
<version>0.2.0-SNAPSHOT</version>
2929
<type>pom</type>
3030
<scope>import</scope>
3131
</dependency>

samples/grpc-server/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.1.0'
10+
version = '0.2.0-SNAPSHOT'
1111

1212
java {
1313
toolchain {
@@ -24,7 +24,7 @@ repositories {
2424

2525
dependencyManagement {
2626
imports {
27-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.1.0'
27+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.2.0-SNAPSHOT'
2828
}
2929
}
3030

samples/grpc-server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-server-sample</artifactId>
14-
<version>0.1.0</version>
14+
<version>0.2.0-SNAPSHOT</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.1.0</version>
41+
<version>0.2.0-SNAPSHOT</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-tomcat/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-tomcat-sample</artifactId>
14-
<version>0.1.0</version>
14+
<version>0.2.0-SNAPSHOT</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.1.0</version>
41+
<version>0.2.0-SNAPSHOT</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.springframework.grpc</groupId>
88
<artifactId>spring-grpc</artifactId>
9-
<version>0.1.0</version>
9+
<version>0.2.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>parent-samples</artifactId>
14-
<version>0.1.0</version>
14+
<version>0.2.0-SNAPSHOT</version>
1515
<packaging>pom</packaging>
1616
<name>Parent Demo</name>
1717

spring-grpc-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.grpc</groupId>
88
<artifactId>spring-grpc</artifactId>
9-
<version>0.1.0</version>
9+
<version>0.2.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>spring-grpc-core</artifactId>
1212
<packaging>jar</packaging>

spring-grpc-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.springframework.grpc</groupId>
88
<artifactId>spring-grpc-dependencies</artifactId>
9-
<version>0.1.0</version>
9+
<version>0.2.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<name>Spring gRPC dependencies</name>

0 commit comments

Comments
 (0)