File tree Expand file tree Collapse file tree 7 files changed +33
-12
lines changed
src/test/java/io/dapr/actors/runtime Expand file tree Collapse file tree 7 files changed +33
-12
lines changed Original file line number Diff line number Diff line change 129
129
<artifactId >javax.annotation-api</artifactId >
130
130
<version >1.3.2</version >
131
131
</dependency >
132
+ <dependency >
133
+ <groupId >com.google.protobuf</groupId >
134
+ <artifactId >protobuf-java</artifactId >
135
+ <version >${protobuf.version} </version >
136
+ </dependency >
132
137
</dependencies >
133
138
134
139
<build >
Original file line number Diff line number Diff line change 113
113
<version >${grpc.version} </version >
114
114
<scope >test</scope >
115
115
</dependency >
116
+ <dependency >
117
+ <groupId >org.jetbrains.kotlin</groupId >
118
+ <artifactId >kotlin-stdlib</artifactId >
119
+ <version >2.1.0</version >
120
+ </dependency >
116
121
</dependencies >
117
122
</dependencyManagement >
118
123
Original file line number Diff line number Diff line change 32
32
<scope >test</scope >
33
33
</dependency >
34
34
<dependency >
35
- <groupId >com.github.gmazzo</groupId >
36
- <artifactId >okhttp- mock</artifactId >
37
- <version >1.4.1 </version >
35
+ <groupId >com.github.gmazzo.okhttp.mock </groupId >
36
+ <artifactId >mock-client </artifactId >
37
+ <version >2.0.0 </version >
38
38
<scope >test</scope >
39
39
</dependency >
40
40
<dependency >
Original file line number Diff line number Diff line change @@ -301,8 +301,8 @@ private void throwException(StreamObserver<?> responseObserver) {
301
301
responseObserver .onError (se );
302
302
}
303
303
304
- private <T extends GeneratedMessageV3 > void populateObserver (StreamObserver <T > responseObserver , GeneratedMessageV3 generatedMessageV3 ) {
305
- responseObserver .onNext (( T ) generatedMessageV3 );
304
+ private <T extends com . google . protobuf . Message > void populateObserver (StreamObserver <T > responseObserver , T message ) {
305
+ responseObserver .onNext (message );
306
306
responseObserver .onCompleted ();
307
307
}
308
308
}
Original file line number Diff line number Diff line change 55
55
<version >${grpc.version} </version >
56
56
<scope >test</scope >
57
57
</dependency >
58
+ <dependency >
59
+ <groupId >com.squareup.okio</groupId >
60
+ <artifactId >okio</artifactId >
61
+ <version >3.9.1</version >
62
+ </dependency >
58
63
</dependencies >
59
64
60
65
<build >
130
135
<configuration >
131
136
<protocCommand >protoc</protocCommand >
132
137
<protocVersion >${protobuf.version} </protocVersion >
133
- <protocArtifact >com.google.protobuf:protoc:3.21.1 </protocArtifact >
138
+ <protocArtifact >com.google.protobuf:protoc:3.25.5 </protocArtifact >
134
139
<addProtoSources >inputs</addProtoSources >
135
140
<includeMavenTypes >direct</includeMavenTypes >
136
141
<includeStdTypes >true</includeStdTypes >
Original file line number Diff line number Diff line change 26
26
<dapr .sdk.alpha.version>0.14.0-SNAPSHOT</dapr .sdk.alpha.version>
27
27
<protobuf .output.directory>${project.build.directory} /generated-sources</protobuf .output.directory>
28
28
<protobuf .input.directory>${project.basedir} /proto</protobuf .input.directory>
29
- <grpc .version>1.64 .0</grpc .version>
30
- <protobuf .version>3.25.0 </protobuf .version>
29
+ <grpc .version>1.69 .0</grpc .version>
30
+ <protobuf .version>3.25.5 </protobuf .version>
31
31
<opentelemetry .version>1.39.0</opentelemetry .version>
32
32
<springboot .version>3.3.1</springboot .version>
33
33
<logback-classic .version>1.4.12</logback-classic .version>
Original file line number Diff line number Diff line change 52
52
<dependency >
53
53
<groupId >com.squareup.okhttp3</groupId >
54
54
<artifactId >okhttp</artifactId >
55
- <version >4.9.3</version >
55
+ <version >4.12.0</version >
56
+ <exclusions >
57
+ <exclusion >
58
+ <groupId >org.jetbrains.kotlin</groupId >
59
+ <artifactId >kotlin-stdlib-jdk8</artifactId >
60
+ </exclusion >
61
+ </exclusions >
56
62
</dependency >
57
63
<dependency >
58
64
<groupId >org.mockito</groupId >
72
78
<scope >test</scope >
73
79
</dependency >
74
80
<dependency >
75
- <groupId >com.github.gmazzo</groupId >
76
- <artifactId >okhttp- mock</artifactId >
77
- <version >1.4.1 </version >
81
+ <groupId >com.github.gmazzo.okhttp.mock </groupId >
82
+ <artifactId >mock-client </artifactId >
83
+ <version >2.0.0 </version >
78
84
<scope >test</scope >
79
85
</dependency >
80
86
<dependency >
You can’t perform that action at this time.
0 commit comments