|
@ -0,0 +1,55 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<parent>
|
|
|
<groupId>com.yihu.ehr</groupId>
|
|
|
<artifactId>ehr-ms-parent</artifactId>
|
|
|
<version>1.13.0</version>
|
|
|
</parent>
|
|
|
|
|
|
<artifactId>svr-manager</artifactId>
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
<dependencies>
|
|
|
<!-- 测试 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
<!-- 测试 -->
|
|
|
<!-- Base -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-config</artifactId>
|
|
|
<scope>${dependency.scope}</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-feign</artifactId>
|
|
|
<scope>${dependency.scope}</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-eureka</artifactId>
|
|
|
<scope>${dependency.scope}</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Admin Server -->
|
|
|
<dependency>
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
<artifactId>spring-boot-admin-starter-server</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
<artifactId>spring-boot-admin-server-ui</artifactId>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
</project>
|