0.8.0 release

This commit is contained in:
Dave Syer
2025-04-25 15:42:35 +01:00
parent 8b9fc7757d
commit 5f7447c9db
34 changed files with 59 additions and 59 deletions

View File

@@ -6,7 +6,7 @@ plugins {
}
group = 'com.example'
version = '0.8.0-SNAPSHOT'
version = '0.8.0'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0'
}
}

View File

@@ -11,7 +11,7 @@
</parent>
<groupId>org.springframework.grpc</groupId>
<artifactId>grpc-client-sample</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<name>Spring gRPC Client Sample</name>
<description>Demo project for Spring gRPC</description>
<url />
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -35,7 +35,7 @@ public class DefaultDeadlineSetupTests {
class Deadline {
static boolean serverJarAvailable() {
return new File("../grpc-server/target/grpc-server-sample-0.8.0-SNAPSHOT.jar").exists();
return new File("../grpc-server/target/grpc-server-sample-0.8.0.jar").exists();
}
@Test
@@ -52,7 +52,7 @@ public class DefaultDeadlineSetupTests {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0"))
.files("target/test-classes"));
}
@@ -83,7 +83,7 @@ public class DefaultDeadlineSetupTests {
class WithoutDeadline {
static boolean serverJarAvailable() {
return new File("../grpc-server/target/grpc-server-sample-0.8.0-SNAPSHOT.jar").exists();
return new File("../grpc-server/target/grpc-server-sample-0.8.0.jar").exists();
}
@Test
@@ -100,7 +100,7 @@ public class DefaultDeadlineSetupTests {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0"))
.files("target/test-classes"));
}

View File

@@ -26,7 +26,7 @@ public class GrpcClientApplicationTests {
}
static boolean serverJarAvailable() {
return new File("../grpc-server/target/grpc-server-sample-0.8.0-SNAPSHOT.jar").exists();
return new File("../grpc-server/target/grpc-server-sample-0.8.0.jar").exists();
}
@Test
@@ -42,7 +42,7 @@ public class GrpcClientApplicationTests {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0"))
.files("target/test-classes"));
}