|
@@ -0,0 +1,49 @@
|
|
|
|
|
+<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</version>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+
|
|
|
|
|
+ <!--工件名-->
|
|
|
|
|
+ <artifactId>custom-gateway-zhiot</artifactId>
|
|
|
|
|
+ <!--版本号-->
|
|
|
|
|
+ <version>${project.version}</version>
|
|
|
|
|
+ <!--打包方式-->
|
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
+ <!--项目名-->
|
|
|
|
|
+ <name>CustomGatewayZhiot</name>
|
|
|
|
|
+ <!--项目描述-->
|
|
|
|
|
+ <description>中环数采</description>
|
|
|
|
|
+
|
|
|
|
|
+ <!--依赖项-->
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <!--核心模块-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.shkpr.service</groupId>
|
|
|
|
|
+ <artifactId>custom-gateway-core</artifactId>
|
|
|
|
|
+ <version>${project.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+
|
|
|
|
|
+ <!--构建脚本-->
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <!--插件项-->
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <!--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>
|