2016-09-01 07:54:53 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-07-12 03:04:54 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-04-26 08:37:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-eureka</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2018-11-30 11:46:08 -05:00
|
|
|
<name>spring-cloud-eureka</name>
|
2018-04-26 08:37:47 -04:00
|
|
|
<description>Spring Cloud Eureka Server and Sample Clients</description>
|
2019-02-09 15:17:19 -05:00
|
|
|
<packaging>pom</packaging>
|
2016-09-01 07:54:53 -04:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
2019-07-07 14:29:01 -04:00
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>spring-cloud-eureka-server</module>
|
|
|
|
<module>spring-cloud-eureka-client</module>
|
|
|
|
<module>spring-cloud-eureka-feign-client</module>
|
|
|
|
</modules>
|
2019-04-01 10:33:22 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-09-01 07:54:53 -04:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<properties>
|
2019-05-04 12:36:43 -04:00
|
|
|
<spring-boot.version>2.1.2.RELEASE</spring-boot.version>
|
|
|
|
<spring-cloud-dependencies.version>Greenwich.RELEASE</spring-cloud-dependencies.version>
|
2018-04-26 08:37:47 -04:00
|
|
|
</properties>
|
2016-09-01 07:54:53 -04:00
|
|
|
|
|
|
|
</project>
|