|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
3
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
4
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
5
|
+ <parent>
|
|
|
6
|
+ <artifactId>csc-szls-parent</artifactId>
|
|
|
7
|
+ <groupId>com.unissoft</groupId>
|
|
|
8
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
9
|
+ <relativePath>../csc-szls-parent/pom.xml</relativePath>
|
|
|
10
|
+ </parent>
|
|
|
11
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
12
|
+
|
|
|
13
|
+ <artifactId>csc-szls-config-server</artifactId>
|
|
|
14
|
+ <description>配置中心服务</description>
|
|
|
15
|
+
|
|
|
16
|
+ <dependencies>
|
|
|
17
|
+ <dependency>
|
|
|
18
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
19
|
+ <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
|
|
20
|
+ </dependency>
|
|
|
21
|
+ <!-- spring cloud config 服务端包 -->
|
|
|
22
|
+ <dependency>
|
|
|
23
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
24
|
+ <artifactId>spring-cloud-config-server</artifactId>
|
|
|
25
|
+ </dependency>
|
|
|
26
|
+
|
|
|
27
|
+ <dependency>
|
|
|
28
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
29
|
+ <artifactId>spring-cloud-starter-bus-amqp</artifactId>
|
|
|
30
|
+ </dependency>
|
|
|
31
|
+ <dependency>
|
|
|
32
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
33
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
34
|
+ </dependency>
|
|
|
35
|
+ </dependencies>
|
|
|
36
|
+</project>
|