summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author刘永强 <[email protected]>2020-08-24 15:36:21 +0800
committer刘永强 <[email protected]>2020-08-24 15:36:21 +0800
commit4c10eb7dd99ead92e458858ad12b2bd66bd78ec6 (patch)
treeab5aa29be95e33c2c19a2140dd71546ee7e3de8f
parentd6d302e874a2ef80527e0449932571515caf6ae2 (diff)
add dependency
-rw-r--r--galaxy-auth-center/pom.xml4
-rw-r--r--galaxy-data-engine/pom.xml4
-rw-r--r--galaxy-gateway/pom.xml4
-rw-r--r--pom.xml10
4 files changed, 18 insertions, 4 deletions
diff --git a/galaxy-auth-center/pom.xml b/galaxy-auth-center/pom.xml
index cc8e035..0f84236 100644
--- a/galaxy-auth-center/pom.xml
+++ b/galaxy-auth-center/pom.xml
@@ -38,6 +38,10 @@
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
<dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-actuator</artifactId>
+ </dependency>
+ <dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>
diff --git a/galaxy-data-engine/pom.xml b/galaxy-data-engine/pom.xml
index 433ff2d..e1383c2 100644
--- a/galaxy-data-engine/pom.xml
+++ b/galaxy-data-engine/pom.xml
@@ -38,6 +38,10 @@
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
<dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-actuator</artifactId>
+ </dependency>
+ <dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>
diff --git a/galaxy-gateway/pom.xml b/galaxy-gateway/pom.xml
index 1067b92..bafce31 100644
--- a/galaxy-gateway/pom.xml
+++ b/galaxy-gateway/pom.xml
@@ -25,6 +25,10 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-actuator</artifactId>
+ </dependency>
</dependencies>
<build>
diff --git a/pom.xml b/pom.xml
index 342e8ea..70ff14d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,16 +31,18 @@
</distributionManagement>
<modules>
- <!--公共服务,定义DTO、工具类等-->
+ <!--公共组件-->
<module>galaxy-common</module>
- <!--Eureka注册中心-->
+ <!--注册中心-->
<module>galaxy-eureka-server</module>
- <!--统一查询网关-->
+ <!--查询网关-->
<module>galaxy-gateway</module>
- <!--数据查询引擎-->
+ <!--查询引擎-->
<module>galaxy-data-engine</module>
<!--认证中心-->
<module>galaxy-auth-center</module>
+ <!--监控服务-->
+ <module>galaxy-admin-server</module>
</modules>
<properties>