| 1234567891011121314151617181920212223242526272829 |
- <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>com.shkpr.service</groupId>
- <artifactId>kpr-custom-gateway</artifactId>
- <version>1.0.0-dev</version>
- </parent>
- <!--工件名-->
- <artifactId>custom-gateway-app</artifactId>
- <!--打包方式-->
- <packaging>jar</packaging>
- <!--项目名-->
- <name>CustomGatewayApp</name>
- <!--项目描述-->
- <description>启动模块</description>
- <!--依赖项-->
- <dependencies>
- <!--枣阳漏控-->
- <dependency>
- <groupId>com.shkpr.service</groupId>
- <artifactId>custom-gateway-zydma</artifactId>
- <version>1.0.0-dev</version>
- </dependency>
- </dependencies>
- </project>
|