File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
springboot-webflux-2-restful Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
+ <modelVersion >4.0.0</modelVersion >
5
+
6
+ <groupId >springboot</groupId >
7
+ <artifactId >springboot-webflux-2-restful</artifactId >
8
+ <version >0.0.1-SNAPSHOT</version >
9
+ <name >springboot-webflux-2-restful :: Spring Boot WebFlux 实现 Restful 服务</name >
10
+
11
+ <!-- Spring Boot 启动父依赖 -->
12
+ <parent >
13
+ <groupId >org.springframework.boot</groupId >
14
+ <artifactId >spring-boot-starter-parent</artifactId >
15
+ <version >2.0.1.RELEASE</version >
16
+ </parent >
17
+
18
+ <dependencies >
19
+
20
+ <!-- Spring Boot Web Flux 依赖 -->
21
+ <dependency >
22
+ <groupId >org.springframework.boot</groupId >
23
+ <artifactId >spring-boot-starter-webflux</artifactId >
24
+ </dependency >
25
+
26
+ <!-- Spring Boot Test 依赖 -->
27
+ <dependency >
28
+ <groupId >org.springframework.boot</groupId >
29
+ <artifactId >spring-boot-starter-test</artifactId >
30
+ <scope >test</scope >
31
+ </dependency >
32
+
33
+ <!-- Junit -->
34
+ <dependency >
35
+ <groupId >junit</groupId >
36
+ <artifactId >junit</artifactId >
37
+ <version >4.12</version >
38
+ </dependency >
39
+ </dependencies >
40
+
41
+ </project >
You can’t perform that action at this time.
0 commit comments