1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <parent>
- <artifactId>background</artifactId>
- <groupId>cn.kdan.compdf</groupId>
- <version>0.0.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>background-gateway</artifactId>
- <dependencies>
- <dependency>
- <groupId>cn.kdan.compdf</groupId>
- <artifactId>background-redis</artifactId>
- <version>0.0.1</version>
- </dependency>
- <dependency>
- <groupId>cn.kdan.compdf</groupId>
- <artifactId>background-common</artifactId>
- <version>0.0.1</version>
- <!--gateway 使用的是响应式的web编程模式 把传统的web编程模型刨除-->
- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--网关-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-gateway</artifactId>
- <version>${gateway.version}</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>background-gateway</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|