2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-14 08:13:57 -04:00
|
|
|
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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-cloud-zuul-fallback</artifactId>
|
|
|
|
<name>spring-cloud-zuul-fallback</name>
|
2019-12-05 09:56:52 -05:00
|
|
|
<packaging>pom</packaging>
|
2019-10-31 21:43:47 -04:00
|
|
|
<description>Spring Cloud Zuul Fallback</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
2022-05-29 10:02:17 -04:00
|
|
|
<artifactId>spring-cloud-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modules>
|
2022-08-26 06:50:12 -04:00
|
|
|
<module>spring-cloud-zuul-fallback-api-gateway</module>
|
|
|
|
<module>spring-cloud-zuul-fallback-weather-service</module>
|
2019-10-31 21:43:47 -04:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
2021-06-25 15:50:37 -04:00
|
|
|
<spring-cloud-dependencies.version>2020.0.3</spring-cloud-dependencies.version>
|
|
|
|
<spring-cloud-netflix-zuul.version>2.2.7.RELEASE</spring-cloud-netflix-zuul.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
2021-05-14 08:13:57 -04:00
|
|
|
|
2022-09-13 11:52:49 -04:00
|
|
|
</project>
|