|
60 | 60 | <system>GitHub</system> |
61 | 61 | <url>https://github.com/spring-projects/spring-integration-samples/issues</url> |
62 | 62 | </issueManagement> |
| 63 | + <dependencies> |
| 64 | + <dependency> |
| 65 | + <groupId>org.springframework.boot</groupId> |
| 66 | + <artifactId>spring-boot-starter-integration</artifactId> |
| 67 | + <scope>runtime</scope> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.springframework.boot</groupId> |
| 71 | + <artifactId>spring-boot-starter-grpc-client</artifactId> |
| 72 | + <scope>runtime</scope> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>org.springframework.integration</groupId> |
| 76 | + <artifactId>spring-integration-grpc</artifactId> |
| 77 | + <scope>runtime</scope> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>org.hamcrest</groupId> |
| 81 | + <artifactId>hamcrest-library</artifactId> |
| 82 | + <version>2.2</version> |
| 83 | + <scope>test</scope> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>org.mockito</groupId> |
| 87 | + <artifactId>mockito-core</artifactId> |
| 88 | + <version>5.21.0</version> |
| 89 | + <scope>test</scope> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>org.junit.jupiter</groupId> |
| 93 | + <artifactId>junit-jupiter-api</artifactId> |
| 94 | + <scope>test</scope> |
| 95 | + </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>org.springframework.integration</groupId> |
| 98 | + <artifactId>spring-integration-test</artifactId> |
| 99 | + <scope>test</scope> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>org.springframework.boot</groupId> |
| 103 | + <artifactId>spring-boot-starter-grpc-test</artifactId> |
| 104 | + <scope>test</scope> |
| 105 | + </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>org.junit.jupiter</groupId> |
| 108 | + <artifactId>junit-jupiter-engine</artifactId> |
| 109 | + <scope>runtime</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.junit.platform</groupId> |
| 113 | + <artifactId>junit-platform-launcher</artifactId> |
| 114 | + <scope>runtime</scope> |
| 115 | + </dependency> |
| 116 | + </dependencies> |
63 | 117 | <dependencyManagement> |
64 | 118 | <dependencies> |
65 | | - <dependency> |
66 | | - <groupId>org.springframework.grpc</groupId> |
67 | | - <artifactId>spring-grpc-dependencies</artifactId> |
68 | | - <version>1.0.2</version> |
69 | | - <type>pom</type> |
70 | | - <scope>import</scope> |
71 | | - </dependency> |
72 | 119 | <dependency> |
73 | 120 | <groupId>org.springframework.integration</groupId> |
74 | 121 | <artifactId>spring-integration-jdbc</artifactId> |
|
328 | 375 | </dependency> |
329 | 376 | </dependencies> |
330 | 377 | </dependencyManagement> |
331 | | - <dependencies> |
332 | | - <dependency> |
333 | | - <groupId>org.springframework.boot</groupId> |
334 | | - <artifactId>spring-boot-starter-integration</artifactId> |
335 | | - <scope>runtime</scope> |
336 | | - </dependency> |
337 | | - <dependency> |
338 | | - <groupId>org.springframework.grpc</groupId> |
339 | | - <artifactId>spring-grpc-client-spring-boot-starter</artifactId> |
340 | | - <scope>runtime</scope> |
341 | | - </dependency> |
342 | | - <dependency> |
343 | | - <groupId>org.springframework.integration</groupId> |
344 | | - <artifactId>spring-integration-grpc</artifactId> |
345 | | - <scope>runtime</scope> |
346 | | - </dependency> |
347 | | - <dependency> |
348 | | - <groupId>com.google.protobuf</groupId> |
349 | | - <artifactId>protobuf-java</artifactId> |
350 | | - <version>4.29.4</version> |
351 | | - <scope>runtime</scope> |
352 | | - </dependency> |
353 | | - <dependency> |
354 | | - <groupId>org.hamcrest</groupId> |
355 | | - <artifactId>hamcrest-library</artifactId> |
356 | | - <version>2.2</version> |
357 | | - <scope>test</scope> |
358 | | - </dependency> |
359 | | - <dependency> |
360 | | - <groupId>org.mockito</groupId> |
361 | | - <artifactId>mockito-core</artifactId> |
362 | | - <version>5.21.0</version> |
363 | | - <scope>test</scope> |
364 | | - </dependency> |
365 | | - <dependency> |
366 | | - <groupId>org.junit.jupiter</groupId> |
367 | | - <artifactId>junit-jupiter-api</artifactId> |
368 | | - <scope>test</scope> |
369 | | - </dependency> |
370 | | - <dependency> |
371 | | - <groupId>org.springframework.integration</groupId> |
372 | | - <artifactId>spring-integration-test</artifactId> |
373 | | - <scope>test</scope> |
374 | | - </dependency> |
375 | | - <dependency> |
376 | | - <groupId>org.springframework.boot</groupId> |
377 | | - <artifactId>spring-boot-starter-test</artifactId> |
378 | | - <scope>test</scope> |
379 | | - </dependency> |
380 | | - <dependency> |
381 | | - <groupId>org.springframework.grpc</groupId> |
382 | | - <artifactId>spring-grpc-test</artifactId> |
383 | | - <scope>test</scope> |
384 | | - </dependency> |
385 | | - <dependency> |
386 | | - <groupId>org.junit.jupiter</groupId> |
387 | | - <artifactId>junit-jupiter-engine</artifactId> |
388 | | - <scope>runtime</scope> |
389 | | - </dependency> |
390 | | - <dependency> |
391 | | - <groupId>org.junit.platform</groupId> |
392 | | - <artifactId>junit-platform-launcher</artifactId> |
393 | | - <scope>runtime</scope> |
394 | | - </dependency> |
395 | | - </dependencies> |
396 | 378 | <properties> |
397 | 379 | <java.version>17</java.version> |
398 | 380 | </properties> |
|
0 commit comments