43 changed files with 143 additions and 105 deletions
@ -1,25 +1,20 @@
@@ -1,25 +1,20 @@
|
||||
/target/ |
||||
!.mvn/wrapper/maven-wrapper.jar |
||||
|
||||
### STS ### |
||||
.apt_generated |
||||
*~ |
||||
#* |
||||
*# |
||||
.#* |
||||
.classpath |
||||
.factorypath |
||||
.project |
||||
.settings |
||||
.settings/ |
||||
.springBeans |
||||
.sts4-cache |
||||
|
||||
### IntelliJ IDEA ### |
||||
target/ |
||||
bin/ |
||||
_site/ |
||||
.idea |
||||
*.iws |
||||
*.iml |
||||
*.ipr |
||||
|
||||
### NetBeans ### |
||||
/nbproject/private/ |
||||
/build/ |
||||
/nbbuild/ |
||||
/dist/ |
||||
/nbdist/ |
||||
/.nb-gradle/ |
||||
*.iws |
||||
.factorypath |
||||
*.log |
||||
.shelf |
||||
*.swp |
||||
*.swo |
||||
|
@ -0,0 +1,121 @@
@@ -0,0 +1,121 @@
|
||||
<?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.cloud</groupId> |
||||
<artifactId>spring-cloud-gateway-rsocket-parent</artifactId> |
||||
<version>0.0.1-SNAPSHOT</version> |
||||
<relativePath>..</relativePath> |
||||
</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> |
Loading…
Reference in new issue