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.
121 lines
3.6 KiB
121 lines
3.6 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<!-- |
|
~ Copyright 2018-2019 the original author or authors. |
|
~ |
|
~ Licensed under the Apache License, Version 2.0 (the "License"); |
|
~ you may not use this file except in compliance with the License. |
|
~ You may obtain a copy of the License at |
|
~ |
|
~ http://www.apache.org/licenses/LICENSE-2.0 |
|
~ |
|
~ Unless required by applicable law or agreed to in writing, software |
|
~ distributed under the License is distributed on an "AS IS" BASIS, |
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
~ See the License for the specific language governing permissions and |
|
~ limitations under the License. |
|
~ |
|
--> |
|
|
|
<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> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>2.1.2.RELEASE</version> |
|
<relativePath/> <!-- lookup parent from repository --> |
|
</parent> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-gateway-rsocket</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<name>spring-cloud-gateway-rsocket</name> |
|
<description>Spring Cloud Gateway RSocket</description> |
|
|
|
<properties> |
|
<java.version>1.8</java.version> |
|
<rsocket.version>0.11.16</rsocket.version> |
|
<reactor.version>Californium-SR5</reactor.version> |
|
</properties> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>io.projectreactor</groupId> |
|
<artifactId>reactor-bom</artifactId> |
|
<version>${reactor.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.rsocket</groupId> |
|
<artifactId>rsocket-core</artifactId> |
|
<version>${rsocket.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.rsocket</groupId> |
|
<artifactId>rsocket-micrometer</artifactId> |
|
<version>${rsocket.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.rsocket</groupId> |
|
<artifactId>rsocket-transport-netty</artifactId> |
|
<version>${rsocket.version}</version> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-webflux</artifactId> |
|
<!-- TODO: optional --> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.rsocket</groupId> |
|
<artifactId>rsocket-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.rsocket</groupId> |
|
<artifactId>rsocket-micrometer</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.rsocket</groupId> |
|
<artifactId>rsocket-transport-netty</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.micrometer</groupId> |
|
<artifactId>micrometer-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-actuator</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.projectreactor</groupId> |
|
<artifactId>reactor-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|