|
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 | | - </dependency> |
68 | | - <dependency> |
69 | | - <groupId>org.springframework.grpc</groupId> |
70 | | - <artifactId>spring-grpc-client-spring-boot-starter</artifactId> |
71 | | - </dependency> |
72 | | - <dependency> |
73 | | - <groupId>org.springframework.integration</groupId> |
74 | | - <artifactId>spring-integration-grpc</artifactId> |
75 | | - </dependency> |
76 | | - <dependency> |
77 | | - <groupId>com.google.protobuf</groupId> |
78 | | - <artifactId>protobuf-java</artifactId> |
79 | | - <version>4.29.4</version> |
80 | | - </dependency> |
81 | | - <dependency> |
82 | | - <groupId>javax.annotation</groupId> |
83 | | - <artifactId>javax.annotation-api</artifactId> |
84 | | - <version>1.3.2</version> |
85 | | - </dependency> |
86 | | - <dependency> |
87 | | - <groupId>org.hamcrest</groupId> |
88 | | - <artifactId>hamcrest-library</artifactId> |
89 | | - <version>2.2</version> |
90 | | - <scope>test</scope> |
91 | | - </dependency> |
92 | | - <dependency> |
93 | | - <groupId>org.mockito</groupId> |
94 | | - <artifactId>mockito-core</artifactId> |
95 | | - <version>5.21.0</version> |
96 | | - <scope>test</scope> |
97 | | - </dependency> |
98 | | - <dependency> |
99 | | - <groupId>org.junit.jupiter</groupId> |
100 | | - <artifactId>junit-jupiter-api</artifactId> |
101 | | - <scope>test</scope> |
102 | | - </dependency> |
103 | | - <dependency> |
104 | | - <groupId>org.springframework.integration</groupId> |
105 | | - <artifactId>spring-integration-test</artifactId> |
106 | | - <scope>test</scope> |
107 | | - </dependency> |
108 | | - <dependency> |
109 | | - <groupId>org.springframework.boot</groupId> |
110 | | - <artifactId>spring-boot-starter-test</artifactId> |
111 | | - <scope>test</scope> |
112 | | - </dependency> |
113 | | - <dependency> |
114 | | - <groupId>org.springframework.grpc</groupId> |
115 | | - <artifactId>spring-grpc-test</artifactId> |
116 | | - <scope>test</scope> |
117 | | - </dependency> |
118 | | - <dependency> |
119 | | - <groupId>org.springframework.grpc</groupId> |
120 | | - <artifactId>spring-grpc-server-spring-boot-starter</artifactId> |
121 | | - <scope>test</scope> |
122 | | - </dependency> |
123 | | - <dependency> |
124 | | - <groupId>org.junit.jupiter</groupId> |
125 | | - <artifactId>junit-jupiter-engine</artifactId> |
126 | | - <scope>runtime</scope> |
127 | | - </dependency> |
128 | | - <dependency> |
129 | | - <groupId>org.junit.platform</groupId> |
130 | | - <artifactId>junit-platform-launcher</artifactId> |
131 | | - <scope>runtime</scope> |
132 | | - </dependency> |
133 | | - </dependencies> |
134 | 63 | <dependencyManagement> |
135 | 64 | <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> |
136 | 72 | <dependency> |
137 | 73 | <groupId>org.springframework.integration</groupId> |
138 | 74 | <artifactId>spring-integration-jdbc</artifactId> |
|
355 | 291 | <scope>import</scope> |
356 | 292 | <type>pom</type> |
357 | 293 | </dependency> |
358 | | - <dependency> |
359 | | - <groupId>org.springframework.grpc</groupId> |
360 | | - <artifactId>spring-grpc-dependencies</artifactId> |
361 | | - <version>1.0.2</version> |
362 | | - <scope>import</scope> |
363 | | - <type>pom</type> |
364 | | - </dependency> |
365 | 294 | <dependency> |
366 | 295 | <groupId>org.junit</groupId> |
367 | 296 | <artifactId>junit-bom</artifactId> |
|
399 | 328 | </dependency> |
400 | 329 | </dependencies> |
401 | 330 | </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> |
402 | 396 | <properties> |
403 | 397 | <java.version>17</java.version> |
404 | 398 | </properties> |
405 | 399 | <build> |
406 | | - <extensions> |
407 | | - <extension> |
408 | | - <groupId>kr.motd.maven</groupId> |
409 | | - <artifactId>os-maven-plugin</artifactId> |
410 | | - <version>1.7.1</version> |
411 | | - </extension> |
412 | | - </extensions> |
413 | 400 | <plugins> |
414 | | - <plugin> |
415 | | - <groupId>org.xolstice.maven.plugins</groupId> |
416 | | - <artifactId>protobuf-maven-plugin</artifactId> |
417 | | - <version>0.6.1</version> |
418 | | - <configuration> |
419 | | - <protocArtifact>com.google.protobuf:protoc:4.29.4:exe:${os.detected.classifier}</protocArtifact> |
420 | | - <pluginId>grpc-java</pluginId> |
421 | | - <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.70.0:exe:${os.detected.classifier}</pluginArtifact> |
422 | | - </configuration> |
423 | | - <executions> |
424 | | - <execution> |
425 | | - <goals> |
426 | | - <goal>compile</goal> |
427 | | - <goal>compile-custom</goal> |
428 | | - </goals> |
429 | | - </execution> |
430 | | - </executions> |
431 | | - </plugin> |
432 | 401 | <plugin> |
433 | 402 | <groupId>org.springframework.boot</groupId> |
434 | 403 | <artifactId>spring-boot-maven-plugin</artifactId> |
|
0 commit comments