2017-01-26 21:28:15 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-06-01 05:27:23 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-03-17 00:01:11 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2017-01-26 21:28:15 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starters</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2017-01-26 21:28:15 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
<name>Spring Boot WebFlux Starter</name>
|
|
|
|
<description>Starter for building WebFlux applications using Spring Framework's
|
|
|
|
Reactive Web support</description>
|
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
2017-01-26 21:28:15 +08:00
|
|
|
</properties>
|
2019-10-02 16:55:37 +08:00
|
|
|
<scm>
|
|
|
|
<url>${git.url}</url>
|
|
|
|
<connection>${git.connection}</connection>
|
|
|
|
<developerConnection>${git.developerConnection}</developerConnection>
|
|
|
|
</scm>
|
2017-01-26 21:28:15 +08:00
|
|
|
<dependencies>
|
2018-08-17 16:28:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2017-01-26 21:28:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2017-06-02 17:27:18 +08:00
|
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
2017-01-26 21:28:15 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-06-02 17:27:18 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-reactor-netty</artifactId>
|
2017-01-26 21:28:15 +08:00
|
|
|
</dependency>
|
2019-03-06 04:20:52 +08:00
|
|
|
<dependency>
|
2019-04-17 20:24:58 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
2019-03-06 04:20:52 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2019-04-17 20:24:58 +08:00
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-el</artifactId>
|
2019-03-06 04:20:52 +08:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-01-26 21:28:15 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webflux</artifactId>
|
|
|
|
</dependency>
|
2019-07-10 22:19:39 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.synchronoss.cloud</groupId>
|
|
|
|
<artifactId>nio-multipart-parser</artifactId>
|
|
|
|
</dependency>
|
2017-01-26 21:28:15 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|