1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!--
3
+ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ contributor license agreements. See the NOTICE file distributed with
5
+ this work for additional information regarding copyright ownership.
6
+ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ (the "License"); you may not use this file except in compliance with
8
+ the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+ -->
18
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
19
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
20
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
21
+ <parent >
22
+ <groupId >org.apache.dubbo.samples</groupId >
23
+ <artifactId >dubbo-spring-boot-registry-nacos-samples</artifactId >
24
+ <version >${revision} </version >
25
+ <relativePath >../pom.xml</relativePath >
26
+ </parent >
27
+ <modelVersion >4.0.0</modelVersion >
28
+
29
+ <artifactId >dubbo-spring-boot-registry-nacos-provider-sample</artifactId >
30
+ <name >Apache Dubbo Spring Boot :: Samples : Registry Nacos :: Provider Sample</name >
31
+
32
+ <properties >
33
+ <nacos .version>1.0.0-RC3</nacos .version>
34
+ </properties >
35
+
36
+ <dependencies >
37
+ <!-- Spring Boot dependencies -->
38
+ <dependency >
39
+ <groupId >org.springframework.boot</groupId >
40
+ <artifactId >spring-boot-starter</artifactId >
41
+ </dependency >
42
+
43
+ <dependency >
44
+ <groupId >org.apache.dubbo</groupId >
45
+ <artifactId >dubbo-spring-boot-starter</artifactId >
46
+ <version >${revision} </version >
47
+ </dependency >
48
+
49
+ <!-- Dubbo -->
50
+ <dependency >
51
+ <groupId >org.apache.dubbo</groupId >
52
+ <artifactId >dubbo</artifactId >
53
+ </dependency >
54
+
55
+ <!-- Dubbo Registry Nacos -->
56
+ <dependency >
57
+ <groupId >org.apache.dubbo</groupId >
58
+ <artifactId >dubbo-registry-nacos</artifactId >
59
+ <version >${revision} </version >
60
+ </dependency >
61
+
62
+ <dependency >
63
+ <groupId >com.alibaba.nacos</groupId >
64
+ <artifactId >nacos-client</artifactId >
65
+ <version >${nacos.version} </version >
66
+ </dependency >
67
+
68
+ <dependency >
69
+ <groupId >org.apache.dubbo.samples</groupId >
70
+ <artifactId >dubbo-spring-boot-sample-api</artifactId >
71
+ <version >${revision} </version >
72
+ </dependency >
73
+ </dependencies >
74
+ </project >
0 commit comments