| <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
|     <modelVersion>4.0.0</modelVersion> | 
|   | 
|     <artifactId>acs-gateway</artifactId> | 
|     <version>1.0.0</version> | 
|     <packaging>jar</packaging> | 
|   | 
|     <name>gateway</name> | 
|   | 
|     <parent> | 
|         <groupId>com.zy</groupId> | 
|         <artifactId>acs</artifactId> | 
|         <version>1.0.0</version> | 
|     </parent> | 
|   | 
|     <properties> | 
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
|         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | 
|     </properties> | 
|   | 
|     <dependencies> | 
|         <dependency> | 
|             <groupId>org.springframework.boot</groupId> | 
|             <artifactId>spring-boot-starter-web</artifactId> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>io.netty</groupId> | 
|             <artifactId>netty-all</artifactId> | 
|             <version>4.1.25.Final</version> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.springframework.cloud</groupId> | 
|             <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>org.springframework.cloud</groupId> | 
|             <artifactId>spring-cloud-starter-openfeign</artifactId> | 
|         </dependency> | 
|         <dependency> | 
|             <groupId>com.zy</groupId> | 
|             <artifactId>acs-common</artifactId> | 
|             <version>1.0.0</version> | 
|         </dependency> | 
|     </dependencies> | 
|   | 
|     <build> | 
|         <finalName>rcs-gateway</finalName> | 
|         <plugins> | 
|             <plugin> | 
|                 <groupId>org.springframework.boot</groupId> | 
|                 <artifactId>spring-boot-maven-plugin</artifactId> | 
|             </plugin> | 
|         </plugins> | 
|     </build> | 
|   | 
| </project> |