2022-05-30 23:00:17 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-netflix-sidecar</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>spring-cloud-netflix-sidecar</name>
|
|
|
|
<description>Netflix Sidecar project for Spring Boot</description>
|
|
|
|
|
|
|
|
<parent>
|
2022-07-26 10:31:43 -04:00
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2022-05-30 23:00:17 -04:00
|
|
|
</parent>
|
2022-07-15 00:29:54 -04:00
|
|
|
|
2022-05-30 23:00:17 -04:00
|
|
|
<modules>
|
2022-08-26 06:50:12 -04:00
|
|
|
<module>spring-cloud-netflix-sidecar-demo</module>
|
|
|
|
<module>spring-cloud-netflix-sidecar-echo-demo</module>
|
2022-05-30 23:00:17 -04:00
|
|
|
</modules>
|
2022-07-15 00:29:54 -04:00
|
|
|
|
2022-05-30 23:00:17 -04:00
|
|
|
<properties>
|
|
|
|
<netflix.cloud.version>2.2.10.RELEASE</netflix.cloud.version>
|
|
|
|
<spring-boot.version>2.3.12.RELEASE</spring-boot.version>
|
|
|
|
</properties>
|
2022-07-15 00:29:54 -04:00
|
|
|
|
2022-05-30 23:00:17 -04:00
|
|
|
</project>
|