Skip to content

Commit dcb5fe3

Browse files
Merge pull request #18455 from programenth/spring-web-test1
Updating pom.xml | BAEL-5269
2 parents 30018bc + 5f921e6 commit dcb5fe3

File tree

10 files changed

+24
-18
lines changed

10 files changed

+24
-18
lines changed

spring-cloud-modules/spring-cloud-eureka/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
<module>spring-cloud-eureka-feign-client</module>
2323
<module>spring-cloud-eureka-feign-client-integration-test</module>
2424
<module>spring-cloud-eureka-server</module>
25+
<module>spring-cloud-eureka-server2</module>
26+
<module>spring-cloud-eureka-client2</module>
2527
</modules>
2628

2729
<properties>
Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,23 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<parent>
6-
<groupId>org.springframework.boot</groupId>
7-
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.0</version>
9-
<relativePath/>
10-
</parent>
115
<groupId>com.baeldung</groupId>
12-
<artifactId>eurekaClient</artifactId>
6+
<artifactId>spring-cloud-eureka-client2</artifactId>
137
<version>0.0.1-SNAPSHOT</version>
14-
<name>eurekaClient</name>
8+
<name>spring-cloud-eureka-client2</name>
159
<description>Demo project for Eureka Client</description>
16-
<url/>
10+
11+
<parent>
12+
<groupId>com.baeldung</groupId>
13+
<artifactId>spring-cloud-eureka</artifactId>
14+
<version>1.0.0-SNAPSHOT</version>
15+
</parent>
16+
1717
<properties>
1818
<java.version>17</java.version>
1919
<spring-cloud.version>2022.0.0</spring-cloud.version>
2020
</properties>
21+
2122
<dependencies>
2223
<dependency>
2324
<groupId>org.springframework.cloud</groupId>
@@ -33,6 +34,7 @@
3334
<scope>test</scope>
3435
</dependency>
3536
</dependencies>
37+
3638
<dependencyManagement>
3739
<dependencies>
3840
<dependency>
Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,23 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<parent>
6-
<groupId>org.springframework.boot</groupId>
7-
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.4.3</version>
9-
<relativePath/>
10-
</parent>
115
<groupId>com.baeldung</groupId>
12-
<artifactId>eurekaServer</artifactId>
6+
<artifactId>spring-cloud-eureka-server2</artifactId>
137
<version>0.0.1-SNAPSHOT</version>
14-
<name>eurekaServer</name>
8+
<name>spring-cloud-eureka-server2</name>
159
<description>Demo project for Eureka Server</description>
16-
<url/>
10+
11+
<parent>
12+
<groupId>com.baeldung</groupId>
13+
<artifactId>spring-cloud-eureka</artifactId>
14+
<version>1.0.0-SNAPSHOT</version>
15+
</parent>
16+
1717
<properties>
1818
<java.version>17</java.version>
1919
<spring-cloud.version>2024.0.0</spring-cloud.version>
2020
</properties>
21+
2122
<dependencies>
2223
<dependency>
2324
<groupId>org.springframework.boot</groupId>
@@ -33,6 +34,7 @@
3334
<scope>test</scope>
3435
</dependency>
3536
</dependencies>
37+
3638
<dependencyManagement>
3739
<dependencies>
3840
<dependency>

0 commit comments

Comments
 (0)