2018-12-22 07:30:08 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-01-29 05:05:15 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-03-06 04:49:59 -05:00
|
|
|
<groupId>com.baeldung</groupId>
|
2016-01-29 05:05:15 -05:00
|
|
|
<artifactId>spring-zuul</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>spring-zuul</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<parent>
|
2018-11-28 09:17:30 -05:00
|
|
|
<artifactId>parent-boot-2</artifactId>
|
2017-05-14 12:01:35 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-11-28 09:17:30 -05:00
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
2016-01-29 05:05:15 -05:00
|
|
|
</parent>
|
2017-05-12 14:32:54 -04:00
|
|
|
|
2016-01-29 05:05:15 -05:00
|
|
|
<modules>
|
|
|
|
<module>spring-zuul-foos-resource</module>
|
|
|
|
<module>spring-zuul-ui</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>spring-zuul</finalName>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>${maven-war-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- Spring -->
|
2019-02-27 13:23:48 -05:00
|
|
|
<spring-cloud.version>2.1.0.RELEASE</spring-cloud.version>
|
2016-01-29 05:05:15 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|