You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
159 lines
5.6 KiB
159 lines
5.6 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-gateway</artifactId> |
|
<version>2.2.1.BUILD-SNAPSHOT</version> |
|
<relativePath>..</relativePath> |
|
</parent> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-gateway-core</artifactId> |
|
<version>2.2.1.BUILD-SNAPSHOT</version> |
|
<name>Spring Cloud Gateway Core</name> |
|
<description>Spring Cloud Gateway Core</description> |
|
<url>https://spring.io/spring-cloud/spring-cloud-gateway/spring-cloud-gateway-core</url> |
|
<organization> |
|
<name>Pivotal Software, Inc.</name> |
|
<url>https://www.spring.io</url> |
|
</organization> |
|
<licenses> |
|
<license> |
|
<name>Apache License, Version 2.0</name> |
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url> |
|
</license> |
|
</licenses> |
|
<developers> |
|
<developer> |
|
<id>sgibb</id> |
|
<name>Spencer Gibb</name> |
|
<email>sgibb at pivotal.io</email> |
|
<organization>Pivotal Software, Inc.</organization> |
|
<organizationUrl>https://www.spring.io</organizationUrl> |
|
<roles> |
|
<role>Project lead</role> |
|
</roles> |
|
</developer> |
|
</developers> |
|
<scm> |
|
<connection>scm:git:git://github.com/spring-cloud/spring-cloud-gateway.git/spring-cloud-gateway-core</connection> |
|
<developerConnection>scm:git:ssh://git@github.com/spring-cloud/spring-cloud-gateway.git/spring-cloud-gateway-core</developerConnection> |
|
<url>https://github.com/spring-cloud/spring-cloud-gateway/spring-cloud-gateway-core</url> |
|
</scm> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
<version>2.2.1.RELEASE</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-actuator</artifactId> |
|
<version>2.2.1.RELEASE</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-webflux</artifactId> |
|
<version>2.2.1.RELEASE</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
<version>2.2.1.RELEASE</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId> |
|
<version>2.2.1.BUILD-SNAPSHOT</version> |
|
<scope>compile</scope> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>ribbon-transport</artifactId> |
|
<groupId>com.netflix.ribbon</groupId> |
|
</exclusion> |
|
<exclusion> |
|
<artifactId>rxnetty</artifactId> |
|
<groupId>io.reactivex</groupId> |
|
</exclusion> |
|
</exclusions> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId> |
|
<version>2.2.1.BUILD-SNAPSHOT</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-loadbalancer</artifactId> |
|
<version>2.2.1.BUILD-SNAPSHOT</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-devtools</artifactId> |
|
<version>2.2.1.RELEASE</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
<version>2.2.1.RELEASE</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-security</artifactId> |
|
<version>2.2.1.RELEASE</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jetbrains.kotlin</groupId> |
|
<artifactId>kotlin-stdlib</artifactId> |
|
<version>1.3.50</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jetbrains.kotlin</groupId> |
|
<artifactId>kotlin-reflect</artifactId> |
|
<version>1.3.50</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.projectreactor.addons</groupId> |
|
<artifactId>reactor-extra</artifactId> |
|
<version>3.3.0.RELEASE</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-autoconfigure-processor</artifactId> |
|
<version>2.2.1.RELEASE</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-circuitbreaker-reactor-resilience4j</artifactId> |
|
<version>1.0.1.BUILD-SNAPSHOT</version> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|