2017-09-21 12:38:56 -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>
|
|
|
|
<artifactId>spring-cloud-gateway</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2018-11-30 11:46:08 -05:00
|
|
|
<name>spring-cloud-gateway</name>
|
2017-09-21 12:38:56 -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>
|
2017-09-21 12:38:56 -04:00
|
|
|
|
2018-07-12 03:04:54 -04:00
|
|
|
<dependencyManagement>
|
2018-05-31 15:26:30 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-gateway</artifactId>
|
|
|
|
<version>${cloud.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-05-31 15:26:30 -04:00
|
|
|
<groupId>org.springframework.cloud</groupId>
|
2018-08-10 00:46:38 -04:00
|
|
|
<artifactId>spring-cloud-starter</artifactId>
|
2018-04-26 08:37:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2018-05-31 15:26:30 -04:00
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
2018-04-26 08:37:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-05-31 15:26:30 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
2018-04-26 08:37:47 -04:00
|
|
|
</dependency>
|
2018-09-12 17:28:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-04-26 02:50:35 -04:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator-cdi</artifactId>
|
2018-07-12 03:04:54 -04:00
|
|
|
<version>${hibernate-validator.version}</version>
|
2018-04-26 08:37:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor.ipc</groupId>
|
|
|
|
<artifactId>reactor-netty</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-04-26 02:50:35 -04:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<properties>
|
2018-08-10 00:46:38 -04:00
|
|
|
<cloud.version>2.0.1.RELEASE</cloud.version>
|
2018-07-12 03:04:54 -04:00
|
|
|
<hibernate-validator.version>6.0.2.Final</hibernate-validator.version>
|
2018-04-26 08:37:47 -04:00
|
|
|
</properties>
|
2018-04-26 02:50:35 -04:00
|
|
|
|
2017-09-21 12:38:56 -04:00
|
|
|
</project>
|