Skip to content

Commit d0befa6

Browse files
Fixed issue with running server and client side by side
1 parent fc701a0 commit d0befa6

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

pom.xml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.starkandwayne</groupId>
1212
<artifactId>service-registry</artifactId>
13-
<version>1.0.0-3.1.37</version>
13+
<version>1.0.1-3.1.37</version>
1414
<name>service-registry</name>
1515
<description>Service Registry for Stark And Wayne</description>
1616
<properties>
@@ -19,11 +19,20 @@
1919
<spring-cloud.version>2020.0.4</spring-cloud.version>
2020
</properties>
2121
<dependencies>
22+
2223
<dependency>
23-
<groupId>io.pivotal.spring.cloud</groupId>
24-
<artifactId>spring-cloud-services-starter-service-registry</artifactId>
24+
<groupId>org.springframework.cloud</groupId>
25+
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
2526
</dependency>
2627

28+
<dependency>
29+
<groupId>org.springframework.cloud</groupId>
30+
<artifactId>spring-cloud-starter-config</artifactId>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.springframework.boot</groupId>
34+
<artifactId>spring-boot-starter-actuator</artifactId>
35+
</dependency>
2736
<dependency>
2837
<groupId>org.springframework.boot</groupId>
2938
<artifactId>spring-boot-starter-test</artifactId>
@@ -35,7 +44,7 @@
3544
<dependency>
3645
<groupId>org.springframework.cloud</groupId>
3746
<artifactId>spring-cloud-dependencies</artifactId>
38-
<version>${spring-cloud.version}</version>
47+
<version>2020.0.4</version>
3948
<type>pom</type>
4049
<scope>import</scope>
4150
</dependency>

0 commit comments

Comments
 (0)