| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <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-zydma</artifactId>
- <!--版本号-->
- <version>${project.version}</version>
- <!--打包方式-->
- <packaging>jar</packaging>
- <!--项目名-->
- <name>CustomGatewayZydma</name>
- <!--项目描述-->
- <description>枣阳漏控</description>
- <!--依赖项-->
- <dependencies>
- <!--核心模块-->
- <dependency>
- <groupId>com.shkpr.service</groupId>
- <artifactId>custom-gateway-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <!--构建脚本-->
- <build>
- <!--插件项-->
- <plugins>
- <!--maven-jar-->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <id>default-jar</id>
- <phase>none</phase>
- </execution>
- </executions>
- </plugin>
- <!--maven-install-->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <executions>
- <execution>
- <id>default-install</id>
- <phase>none</phase>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|