Skip to content
Closed
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ If you’re 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>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -225,7 +225,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:1.0.0-SNAPSHOT")
implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.0.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<packaging>pom</packaging>
<url>https://github.com/spring-projects/spring-grpc</url>
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'com.example'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
Expand All @@ -28,7 +28,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}

def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0-SNAPSHOT'
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'

dependencyManagement {
imports {
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.springframework.grpc</groupId>
<artifactId>grpc-client-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<name>Spring gRPC Client Sample</name>
<description>Demo project for Spring gRPC</description>
<url />
Expand Down Expand Up @@ -40,7 +40,7 @@
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class DefaultDeadlineSetupTests {
class Deadline {

static boolean serverJarAvailable() {
return new File("../grpc-server/target/grpc-server-sample-1.0.0-SNAPSHOT.jar").exists();
return new File("../grpc-server/target/grpc-server-sample-1.0.0.jar").exists();
}

@Test
Expand All @@ -51,7 +51,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0-SNAPSHOT"))
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.files("target/test-classes"));
}
Expand Down Expand Up @@ -82,7 +82,7 @@ public CommandLineRunner otherRunner(SimpleGrpc.SimpleBlockingStub stub) {
class WithoutDeadline {

static boolean serverJarAvailable() {
return new File("../grpc-server/target/grpc-server-sample-1.0.0-SNAPSHOT.jar").exists();
return new File("../grpc-server/target/grpc-server-sample-1.0.0.jar").exists();
}

@Test
Expand All @@ -99,7 +99,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0-SNAPSHOT"))
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.files("target/test-classes"));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static void main(String[] args) {
}

static boolean serverJarAvailable() {
return new File("../grpc-server/target/grpc-server-sample-1.0.0-SNAPSHOT.jar").exists();
return new File("../grpc-server/target/grpc-server-sample-1.0.0.jar").exists();
}

@Test
Expand All @@ -42,7 +42,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0-SNAPSHOT"))
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.files("target/test-classes"));
}
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-oauth2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.example'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
Expand All @@ -33,7 +33,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}

def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0-SNAPSHOT'
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'

dependencyManagement {
imports {
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.springframework.grpc</groupId>
<artifactId>grpc-oauth2-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<name>Spring gRPC OAuth2 Server Sample</name>
<description>Demo project for Spring gRPC</description>
<url />
Expand All @@ -38,7 +38,7 @@
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-reactive/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'com.example'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
Expand All @@ -28,7 +28,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}

def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0-SNAPSHOT'
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'

dependencyManagement {
imports {
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-reactive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.springframework.grpc</groupId>
<artifactId>grpc-reactive-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<name>Spring gRPC Reactive Sample</name>
<description>Demo project for Spring gRPC</description>
<url />
Expand All @@ -38,7 +38,7 @@
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-secure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.example'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

java {
toolchain {
Expand All @@ -24,7 +24,7 @@ repositories {

dependencyManagement {
imports {
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:1.0.0-SNAPSHOT'
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:1.0.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-secure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.springframework.grpc</groupId>
<artifactId>grpc-secure-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<name>Spring gRPC Secure Sample</name>
<description>Demo project for Spring gRPC</description>
<url />
Expand All @@ -38,7 +38,7 @@
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc-server-kotlin/HELP-gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $ ./gradlew bootBuildImage
Then, you can run the app like any other container:

```
$ docker run --rm grpc-server:1.0.0-SNAPSHOT
$ docker run --rm grpc-server:1.0.0
```

### Executable with Native Build Tools
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc-server-kotlin/HELP-maven.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ ./mvnw spring-boot:build-image -Pnative
Then, you can run the app like any other container:

```
$ docker run --rm grpc-server-sample:1.0.0-SNAPSHOT
$ docker run --rm grpc-server-sample:1.0.0
```

### Executable with Native Build Tools
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-server-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = 'com.example'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

def toolchainVersion() {
// Highest jvm supported is 24
Expand All @@ -32,7 +32,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}

def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0-SNAPSHOT'
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'

dependencyManagement {
imports {
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-server-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.springframework.grpc</groupId>
<artifactId>grpc-server-kotlin-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<name>Spring gRPC Kotlin Server Sample</name>
<description>Demo project for Spring gRPC</description>
<url />
Expand Down Expand Up @@ -40,7 +40,7 @@
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-server-netty-shaded/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.example'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
Expand All @@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}

def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0-SNAPSHOT'
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'

dependencyManagement {
imports {
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-server-netty-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>com.example</groupId>
<artifactId>grpc-server-netty-shaded</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<name>Spring gRPC Server Sample Netty Shaded</name>
<description>Demo project for Spring Boot</description>
<properties>
Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc-server/HELP-gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $ ./gradlew bootBuildImage
Then, you can run the app like any other container:

```
$ docker run --rm grpc-server:1.0.0-SNAPSHOT
$ docker run --rm grpc-server:1.0.0
```

### Executable with Native Build Tools
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc-server/HELP-maven.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ ./mvnw spring-boot:build-image -Pnative
Then, you can run the app like any other container:

```
$ docker run --rm grpc-server-sample:1.0.0-SNAPSHOT
$ docker run --rm grpc-server-sample:1.0.0
```

### Executable with Native Build Tools
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.example'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
Expand All @@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}

def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0-SNAPSHOT'
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'

dependencyManagement {
imports {
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.springframework.grpc</groupId>
<artifactId>grpc-server-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<name>Spring gRPC Server Sample</name>
<description>Demo project for Spring gRPC</description>
<url />
Expand All @@ -38,7 +38,7 @@
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions samples/grpc-tomcat-secure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.example'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'

def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
Expand All @@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}

def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0-SNAPSHOT'
def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'

dependencyManagement {
imports {
Expand Down
Loading
Loading