|
14 | 14 | <relativePath>..</relativePath> |
15 | 15 | </parent> |
16 | 16 |
|
| 17 | + <dependencyManagement> |
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>org.springframework.cloud</groupId> |
| 21 | + <artifactId>spring-cloud-gateway</artifactId> |
| 22 | + <version>${cloud.version}</version> |
| 23 | + <type>pom</type> |
| 24 | + <scope>import</scope> |
| 25 | + </dependency> |
| 26 | + </dependencies> |
| 27 | + </dependencyManagement> |
| 28 | + |
17 | 29 | <dependencies> |
18 | 30 | <dependency> |
19 | | - <groupId>org.springframework.boot</groupId> |
20 | | - <artifactId>spring-boot-actuator</artifactId> |
21 | | - <version>${version}</version> |
| 31 | + <groupId>org.springframework.cloud</groupId> |
| 32 | + <artifactId>spring-cloud-starter-gateway</artifactId> |
22 | 33 | </dependency> |
23 | 34 | <dependency> |
24 | 35 | <groupId>org.springframework.boot</groupId> |
25 | | - <artifactId>spring-boot-starter-webflux</artifactId> |
26 | | - <version>${version}</version> |
| 36 | + <artifactId>spring-boot-starter-actuator</artifactId> |
27 | 37 | </dependency> |
28 | 38 | <dependency> |
29 | | - <groupId>org.springframework.cloud</groupId> |
30 | | - <artifactId>spring-cloud-gateway-core</artifactId> |
31 | | - <version>${version}</version> |
| 39 | + <groupId>org.springframework.boot</groupId> |
| 40 | + <artifactId>spring-boot-starter-webflux</artifactId> |
32 | 41 | </dependency> |
33 | 42 |
|
34 | 43 | <dependency> |
|
39 | 48 | <dependency> |
40 | 49 | <groupId>javax.validation</groupId> |
41 | 50 | <artifactId>validation-api</artifactId> |
42 | | - <version>2.0.0.Final</version> |
43 | 51 | </dependency> |
44 | 52 | <dependency> |
45 | 53 | <groupId>io.projectreactor.ipc</groupId> |
46 | 54 | <artifactId>reactor-netty</artifactId> |
47 | | - <version>0.7.0.M1</version> |
48 | 55 | </dependency> |
49 | 56 | </dependencies> |
50 | 57 |
|
|
70 | 77 | <properties> |
71 | 78 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
72 | 79 | <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version> |
73 | | - <spring-boot-maven-plugin.version>1.4.2.RELEASE</spring-boot-maven-plugin.version> |
74 | | - <version>2.0.0.M6</version> |
| 80 | + <spring-boot-maven-plugin.version>2.0.0.RELEASE</spring-boot-maven-plugin.version> |
| 81 | + <version>2.0.0.RELEASE</version> |
| 82 | + <cloud.version>2.0.0.RC2</cloud.version> |
75 | 83 | </properties> |
76 | 84 |
|
77 | 85 | </project> |
0 commit comments