2 次代码提交 a8f162779b ... 8f756fcaf9

作者 SHA1 备注 提交日期
  ccfeng 8f756fcaf9 提交工单模块工程结构: 2 年之前
  ccfeng 0d29ef7574 提交工单模块工程结构: 2 年之前

+ 5 - 5
Server_echoBizlink-base/pom.xml

@@ -18,10 +18,10 @@
             <groupId>org.projectlombok</groupId>
             <artifactId>lombok</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.apache.commons</groupId>
-            <artifactId>commons-lang3</artifactId>
-        </dependency>
+<!--        <dependency>-->
+<!--            <groupId>org.apache.commons</groupId>-->
+<!--            <artifactId>commons-lang3</artifactId>-->
+<!--        </dependency>-->
         <!--   fast json     -->
         <dependency>
             <groupId>com.alibaba</groupId>
@@ -30,7 +30,7 @@
         <!--   servlet Api依赖     -->
         <dependency>
             <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
+            <artifactId>javax.servlet-api</artifactId>
             <scope>provided</scope>
         </dependency>
         <!--  通用组件      -->

+ 23 - 0
Server_echoBizlink-workorder/Server_echoBizlink-workorder-api/pom.xml

@@ -0,0 +1,23 @@
+<?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>
+
+    <parent>
+        <artifactId>Server_echoBizlink-workorder</artifactId>
+        <groupId>com.Server_echoBizlink</groupId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
+    <artifactId>Server_echoBizlink-workorder-api</artifactId>
+
+
+    <dependencies>
+        <dependency>
+            <groupId>com.Server_echoBizlink</groupId>
+            <artifactId>Server_echoBizlink-workorder-service</artifactId>
+            <version>0.0.1-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+
+
+</project>

+ 23 - 0
Server_echoBizlink-workorder/Server_echoBizlink-workorder-model/pom.xml

@@ -0,0 +1,23 @@
+<?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>
+
+
+    <parent>
+        <artifactId>Server_echoBizlink-workorder</artifactId>
+        <groupId>com.Server_echoBizlink</groupId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
+    <artifactId>Server_echoBizlink-workorder-model</artifactId>
+
+
+    <dependencies>
+        <dependency>
+            <groupId>com.Server_echoBizlink</groupId>
+            <artifactId>Server_echoBizlink-base</artifactId>
+            <version>0.0.1-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+
+</project>

+ 21 - 0
Server_echoBizlink-workorder/Server_echoBizlink-workorder-service/pom.xml

@@ -0,0 +1,21 @@
+<?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>
+
+    <parent>
+        <artifactId>Server_echoBizlink-workorder</artifactId>
+        <groupId>com.Server_echoBizlink</groupId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
+    <artifactId>Server_echoBizlink-workorder-service</artifactId>
+
+    <dependencies>
+        <dependency>
+            <groupId>com.Server_echoBizlink</groupId>
+            <artifactId>Server_echoBizlink-workorder-model</artifactId>
+            <version>0.0.1-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+
+</project>

+ 23 - 0
Server_echoBizlink-workorder/pom.xml

@@ -0,0 +1,23 @@
+<?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>
+
+    <parent>
+        <groupId>com.Server_echoBizlink</groupId>
+        <artifactId>Server_echoBizlink-parent</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+        <relativePath>../Server_echoBizlink-parent</relativePath>
+    </parent>
+    <artifactId>Server_echoBizlink-workorder</artifactId>
+    <name>Server_echoBizlink-workorder</name>
+    <description>Server_echoBizlink-workorder</description>
+    <packaging>pom</packaging>
+
+    <modules>
+        <module>Server_echoBizlink-workorder-api</module>
+        <module>Server_echoBizlink-workorder-model</module>
+        <module>Server_echoBizlink-workorder-service</module>
+    </modules>
+
+</project>