File tree 5 files changed +32
-10
lines changed
dubbo-spring-boot-autoconfigure
dubbo-spring-boot-samples
dubbo-spring-boot-sample-consumer
dubbo-spring-boot-sample-provider
dubbo-spring-boot-starter
5 files changed +32
-10
lines changed Original file line number Diff line number Diff line change 38
38
<artifactId >spring-boot-autoconfigure</artifactId >
39
39
<optional >true</optional >
40
40
</dependency >
41
+
41
42
<dependency >
42
43
<groupId >org.springframework.boot</groupId >
43
44
<artifactId >spring-boot-starter-logging</artifactId >
58
59
<optional >true</optional >
59
60
</dependency >
60
61
62
+ <!-- Alibaba Spring Context extension -->
63
+ <dependency >
64
+ <groupId >com.alibaba.spring</groupId >
65
+ <artifactId >spring-context-support</artifactId >
66
+ </dependency >
67
+
61
68
<!-- Test Dependencies -->
62
69
<dependency >
63
70
<groupId >org.springframework.boot</groupId >
64
71
<artifactId >spring-boot-starter-test</artifactId >
65
72
<scope >test</scope >
66
73
</dependency >
74
+
67
75
</dependencies >
68
76
</project >
Original file line number Diff line number Diff line change 37
37
<java .target.version>1.8</java .target.version>
38
38
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
39
39
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
40
- <spring-boot .version>2.0.3 .RELEASE</spring-boot .version>
41
- <dubbo .version>2.6.2 </dubbo .version>
40
+ <spring-boot .version>2.1.1 .RELEASE</spring-boot .version>
41
+ <dubbo .version>2.6.5 </dubbo .version>
42
42
<zkclient .version>0.2</zkclient .version>
43
43
<zookeeper .version>3.4.9</zookeeper .version>
44
44
<curator-framework .version>2.12.0</curator-framework .version>
57
57
<apache-rat-plugin .version>0.12</apache-rat-plugin .version>
58
58
<maven-release-plugin .version>2.5.3</maven-release-plugin .version>
59
59
<maven-surefire-plugin .version>2.19.1</maven-surefire-plugin .version>
60
+ <alibaba-spring-context-support .version>1.0.2</alibaba-spring-context-support .version>
60
61
</properties >
61
62
62
63
<dependencyManagement >
92
93
</exclusions >
93
94
</dependency >
94
95
96
+ <!-- Alibaba Spring Context extension -->
97
+ <dependency >
98
+ <groupId >com.alibaba.spring</groupId >
99
+ <artifactId >spring-context-support</artifactId >
100
+ <version >${alibaba-spring-context-support.version} </version >
101
+ </dependency >
102
+
95
103
<!-- ZK -->
96
104
<dependency >
97
105
<groupId >org.apache.zookeeper</groupId >
Original file line number Diff line number Diff line change 53
53
<version >${project.version} </version >
54
54
</dependency >
55
55
56
+ <dependency >
57
+ <groupId >com.alibaba</groupId >
58
+ <artifactId >dubbo</artifactId >
59
+ </dependency >
60
+
56
61
<dependency >
57
62
<groupId >${project.groupId} </groupId >
58
63
<artifactId >dubbo-spring-boot-sample-api</artifactId >
Original file line number Diff line number Diff line change 26
26
<modelVersion >4.0.0</modelVersion >
27
27
28
28
<artifactId >dubbo-spring-boot-sample-provider</artifactId >
29
- <name >Dubbo Spring Boot Sample : Provider </name >
29
+ <name >Dubbo Spring Boot Sample : Provider</name >
30
30
31
31
<dependencies >
32
32
53
53
<version >${project.version} </version >
54
54
</dependency >
55
55
56
+ <dependency >
57
+ <groupId >com.alibaba</groupId >
58
+ <artifactId >dubbo</artifactId >
59
+ </dependency >
60
+
56
61
<dependency >
57
62
<groupId >${project.groupId} </groupId >
58
63
<artifactId >dubbo-spring-boot-sample-api</artifactId >
Original file line number Diff line number Diff line change 36
36
<dependency >
37
37
<groupId >org.springframework.boot</groupId >
38
38
<artifactId >spring-boot-starter</artifactId >
39
- <scope >provided</scope >
40
- </dependency >
41
-
42
- <!-- Dubbo -->
43
- <dependency >
44
- <groupId >com.alibaba</groupId >
45
- <artifactId >dubbo</artifactId >
39
+ <optional >true</optional >
46
40
</dependency >
47
41
48
42
<!-- ZK -->
49
43
<dependency >
50
44
<groupId >org.apache.zookeeper</groupId >
51
45
<artifactId >zookeeper</artifactId >
46
+ <optional >true</optional >
52
47
</dependency >
53
48
54
49
<dependency >
55
50
<groupId >org.apache.curator</groupId >
56
51
<artifactId >curator-framework</artifactId >
52
+ <optional >true</optional >
57
53
</dependency >
58
54
59
55
<dependency >
You can’t perform that action at this time.
0 commit comments