@@ -35,7 +35,7 @@ public class DefaultDeadlineSetupTests {
35
35
class Deadline {
36
36
37
37
static boolean serverJarAvailable () {
38
- return new File ("../grpc-server/target/grpc-server-sample-0.11.0 .jar" ).exists ();
38
+ return new File ("../grpc-server/target/grpc-server-sample-0.12.0-SNAPSHOT .jar" ).exists ();
39
39
}
40
40
41
41
@ Test
@@ -52,7 +52,7 @@ static class ExtraConfiguration {
52
52
static CommonsExecWebServerFactoryBean grpcServer () {
53
53
return CommonsExecWebServerFactoryBean .builder ()
54
54
.classpath (classpath -> classpath
55
- .entries (new MavenClasspathEntry ("org.springframework.grpc:grpc-server-sample:0.11.0 " ))
55
+ .entries (new MavenClasspathEntry ("org.springframework.grpc:grpc-server-sample:0.12.0-SNAPSHOT " ))
56
56
.files ("target/test-classes" ));
57
57
}
58
58
@@ -83,7 +83,7 @@ public CommandLineRunner otherRunner(SimpleGrpc.SimpleBlockingStub stub) {
83
83
class WithoutDeadline {
84
84
85
85
static boolean serverJarAvailable () {
86
- return new File ("../grpc-server/target/grpc-server-sample-0.11.0 .jar" ).exists ();
86
+ return new File ("../grpc-server/target/grpc-server-sample-0.12.0-SNAPSHOT .jar" ).exists ();
87
87
}
88
88
89
89
@ Test
@@ -100,7 +100,7 @@ static class ExtraConfiguration {
100
100
static CommonsExecWebServerFactoryBean grpcServer () {
101
101
return CommonsExecWebServerFactoryBean .builder ()
102
102
.classpath (classpath -> classpath
103
- .entries (new MavenClasspathEntry ("org.springframework.grpc:grpc-server-sample:0.11.0 " ))
103
+ .entries (new MavenClasspathEntry ("org.springframework.grpc:grpc-server-sample:0.12.0-SNAPSHOT " ))
104
104
.files ("target/test-classes" ));
105
105
}
106
106
0 commit comments