Parcourir la source

中环项目初始化

欧阳劲驰 il y a 2 semaines
Parent
commit
5b93a36234
3 fichiers modifiés avec 57 ajouts et 0 suppressions
  1. 6 0
      custom-gateway-app/pom.xml
  2. 49 0
      custom-gateway-zhiot/pom.xml
  3. 2 0
      pom.xml

+ 6 - 0
custom-gateway-app/pom.xml

@@ -27,6 +27,12 @@
             <artifactId>custom-gateway-zydma</artifactId>
             <version>${project.version}</version>
         </dependency>
+        <!--中环数采-->
+        <dependency>
+            <groupId>com.shkpr.service</groupId>
+            <artifactId>custom-gateway-zhiot</artifactId>
+            <version>${project.version}</version>
+        </dependency>
     </dependencies>
 
     <!--构建脚本-->

+ 49 - 0
custom-gateway-zhiot/pom.xml

@@ -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>

+ 2 - 0
pom.xml

@@ -28,6 +28,8 @@
 
         <!--枣阳漏控-->
         <module>custom-gateway-zydma</module>
+        <!--中环数采-->
+        <module>custom-gateway-zhiot</module>
     </modules>