Skip to content

Commit 4637700

Browse files
Bill PCthuannguyenit
authored andcommitted
Update configuration
1 parent 0124ea7 commit 4637700

File tree

7 files changed

+88
-57
lines changed

7 files changed

+88
-57
lines changed

micro-services/currency-conversion-service/pom.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,6 @@
2626
</properties>
2727

2828
<dependencies>
29-
<!--
30-
<dependency>
31-
<groupId>org.springframework.boot</groupId>
32-
<artifactId>spring-boot-starter-actuator</artifactId>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.springframework.data</groupId>
36-
<artifactId>spring-data-rest-hal-browser</artifactId>
37-
</dependency>
38-
<dependency>
39-
<groupId>org.springframework.boot</groupId>
40-
<artifactId>spring-boot-devtools</artifactId>
41-
<scope>runtime</scope>
42-
</dependency>
43-
-->
4429
<dependency>
4530
<groupId>org.springframework.cloud</groupId>
4631
<artifactId>spring-cloud-starter-config</artifactId>
@@ -86,6 +71,21 @@
8671
<artifactId>spring-boot-starter-test</artifactId>
8772
<scope>test</scope>
8873
</dependency>
74+
<dependency>
75+
<groupId>org.springframework.boot</groupId>
76+
<artifactId>spring-boot-devtools</artifactId>
77+
<scope>runtime</scope>
78+
</dependency>
79+
<!--
80+
<dependency>
81+
<groupId>org.springframework.boot</groupId>
82+
<artifactId>spring-boot-starter-actuator</artifactId>
83+
</dependency>
84+
<dependency>
85+
<groupId>org.springframework.data</groupId>
86+
<artifactId>spring-data-rest-hal-browser</artifactId>
87+
</dependency>
88+
-->
8989
</dependencies>
9090

9191
<dependencyManagement>

micro-services/currency-exchange-service/pom.xml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,6 @@
2626
</properties>
2727

2828
<dependencies>
29-
<!--
30-
<dependency>
31-
<groupId>org.springframework.boot</groupId>
32-
<artifactId>spring-boot-starter-actuator</artifactId>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.springframework.data</groupId>
36-
<artifactId>spring-data-rest-hal-browser</artifactId>
37-
</dependency>
38-
<dependency>
39-
<groupId>org.springframework.boot</groupId>
40-
<artifactId>spring-boot-devtools</artifactId>
41-
<scope>runtime</scope>
42-
</dependency>
43-
-->
4429
<dependency>
4530
<groupId>org.springframework.boot</groupId>
4631
<artifactId>spring-boot-starter-web</artifactId>
@@ -83,6 +68,23 @@
8368
<artifactId>spring-boot-starter-test</artifactId>
8469
<scope>test</scope>
8570
</dependency>
71+
72+
<dependency>
73+
<groupId>org.springframework.boot</groupId>
74+
<artifactId>spring-boot-devtools</artifactId>
75+
<scope>runtime</scope>
76+
</dependency>
77+
78+
<!--
79+
<dependency>
80+
<groupId>org.springframework.boot</groupId>
81+
<artifactId>spring-boot-starter-actuator</artifactId>
82+
</dependency>
83+
<dependency>
84+
<groupId>org.springframework.data</groupId>
85+
<artifactId>spring-data-rest-hal-browser</artifactId>
86+
</dependency>
87+
-->
8688
</dependencies>
8789

8890
<dependencyManagement>

micro-services/limits-service/pom.xml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,30 +26,35 @@
2626
</properties>
2727

2828
<dependencies>
29-
<!--
30-
<dependency>
31-
<groupId>org.springframework.boot</groupId>
32-
<artifactId>spring-boot-starter-actuator</artifactId>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.springframework.boot</groupId>
36-
<artifactId>spring-boot-devtools</artifactId>
37-
<scope>runtime</scope>
38-
</dependency>
39-
-->
4029
<dependency>
4130
<groupId>org.springframework.boot</groupId>
4231
<artifactId>spring-boot-starter-web</artifactId>
4332
</dependency>
33+
4434
<dependency>
4535
<groupId>org.springframework.cloud</groupId>
4636
<artifactId>spring-cloud-starter-config</artifactId>
4737
</dependency>
38+
39+
<dependency>
40+
<groupId>org.springframework.cloud</groupId>
41+
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
42+
</dependency>
43+
4844
<dependency>
4945
<groupId>org.springframework.boot</groupId>
5046
<artifactId>spring-boot-starter-test</artifactId>
5147
<scope>test</scope>
5248
</dependency>
49+
<dependency>
50+
<groupId>org.springframework.boot</groupId>
51+
<artifactId>spring-boot-devtools</artifactId>
52+
<scope>runtime</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.springframework.boot</groupId>
56+
<artifactId>spring-boot-starter-actuator</artifactId>
57+
</dependency>
5358
</dependencies>
5459

5560
<dependencyManagement>
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
spring.application.name=limits-service
22
spring.cloud.config.uri=http://localhost:8888
3-
spring.profiles.active=dev
3+
spring.profiles.active=dev
4+
management.endpoints.web.exposure.include=*

micro-services/netflix-eureka-naming-server/pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,6 @@
2626
</properties>
2727

2828
<dependencies>
29-
<!--
30-
<dependency>
31-
<groupId>org.springframework.boot</groupId>
32-
<artifactId>spring-boot-starter-actuator</artifactId>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.springframework.boot</groupId>
36-
<artifactId>spring-boot-devtools</artifactId>
37-
<scope>runtime</scope>
38-
</dependency>
39-
-->
4029
<dependency>
4130
<groupId>org.springframework.cloud</groupId>
4231
<artifactId>spring-cloud-starter-config</artifactId>
@@ -50,6 +39,17 @@
5039
<artifactId>spring-boot-starter-test</artifactId>
5140
<scope>test</scope>
5241
</dependency>
42+
<dependency>
43+
<groupId>org.springframework.boot</groupId>
44+
<artifactId>spring-boot-devtools</artifactId>
45+
<scope>runtime</scope>
46+
</dependency>
47+
<!--
48+
<dependency>
49+
<groupId>org.springframework.boot</groupId>
50+
<artifactId>spring-boot-starter-actuator</artifactId>
51+
</dependency>
52+
-->
5353
</dependencies>
5454

5555
<dependencyManagement>

micro-services/netflix-zuul-api-gateway-server/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,18 @@
5757
<artifactId>spring-boot-starter-test</artifactId>
5858
<scope>test</scope>
5959
</dependency>
60+
61+
<dependency>
62+
<groupId>org.springframework.boot</groupId>
63+
<artifactId>spring-boot-devtools</artifactId>
64+
<scope>runtime</scope>
65+
</dependency>
66+
<!--
67+
<dependency>
68+
<groupId>org.springframework.boot</groupId>
69+
<artifactId>spring-boot-starter-actuator</artifactId>
70+
</dependency>
71+
-->
6072
</dependencies>
6173

6274
<dependencyManagement>

micro-services/spring-cloud-config-server/pom.xml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,29 @@
3030
<groupId>org.springframework.cloud</groupId>
3131
<artifactId>spring-cloud-config-server</artifactId>
3232
</dependency>
33-
<!--
33+
34+
<dependency>
35+
<groupId>org.springframework.cloud</groupId>
36+
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
37+
</dependency>
38+
39+
<dependency>
40+
<groupId>org.springframework.boot</groupId>
41+
<artifactId>spring-boot-starter-test</artifactId>
42+
<scope>test</scope>
43+
</dependency>
44+
3445
<dependency>
3546
<groupId>org.springframework.boot</groupId>
3647
<artifactId>spring-boot-devtools</artifactId>
3748
<scope>runtime</scope>
3849
</dependency>
39-
-->
50+
<!--
4051
<dependency>
4152
<groupId>org.springframework.boot</groupId>
42-
<artifactId>spring-boot-starter-test</artifactId>
43-
<scope>test</scope>
53+
<artifactId>spring-boot-starter-actuator</artifactId>
4454
</dependency>
55+
-->
4556
</dependencies>
4657

4758
<dependencyManagement>

0 commit comments

Comments
 (0)