Jelajahi Sumber

重构代码结构

zhengmin 8 tahun lalu
induk
melakukan
8e84749a84
6 mengubah file dengan 14 tambahan dan 46 penghapusan
  1. 3 3
      core-api/pom.xml
  2. 3 3
      core-domain/pom.xml
  3. 3 3
      core-main/pom.xml
  4. 0 15
      message/pom.xml
  5. 5 7
      pom.xml
  6. 0 15
      rpc/pom.xml

+ 3 - 3
api/pom.xml → core-api/pom.xml

@@ -3,13 +3,13 @@
          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">
     <parent>
-        <artifactId>ExamCloud-service-core</artifactId>
-        <groupId>cn.com.qmth</groupId>
+        <artifactId>core</artifactId>
+        <groupId>cn.com.qmth.examcloud.service</groupId>
         <version>0.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
-    <artifactId>api</artifactId>
+    <artifactId>core-api</artifactId>
 
 
 </project>

+ 3 - 3
main/pom.xml → core-domain/pom.xml

@@ -3,13 +3,13 @@
          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">
     <parent>
-        <artifactId>ExamCloud-service-core</artifactId>
-        <groupId>cn.com.qmth</groupId>
+        <artifactId>core</artifactId>
+        <groupId>cn.com.qmth.examcloud.service</groupId>
         <version>0.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
-    <artifactId>main</artifactId>
+    <artifactId>core-domain</artifactId>
 
 
 </project>

+ 3 - 3
domain/pom.xml → core-main/pom.xml

@@ -3,13 +3,13 @@
          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">
     <parent>
-        <artifactId>ExamCloud-service-core</artifactId>
-        <groupId>cn.com.qmth</groupId>
+        <artifactId>core</artifactId>
+        <groupId>cn.com.qmth.examcloud.service</groupId>
         <version>0.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
-    <artifactId>domain</artifactId>
+    <artifactId>core-main</artifactId>
 
 
 </project>

+ 0 - 15
message/pom.xml

@@ -1,15 +0,0 @@
-<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-    <parent>
-        <artifactId>ExamCloud-service-core</artifactId>
-        <groupId>cn.com.qmth</groupId>
-        <version>0.1.0</version>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-
-    <artifactId>message</artifactId>
-
-
-</project>

+ 5 - 7
pom.xml

@@ -4,15 +4,13 @@
          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>
 
-    <groupId>cn.com.qmth</groupId>
-    <artifactId>ExamCloud-service-core</artifactId>
+    <groupId>cn.com.qmth.examcloud.service</groupId>
+    <artifactId>core</artifactId>
     <version>0.1.0</version>
     <modules>
-        <module>domain</module>
-        <module>api</module>
-        <module>main</module>
-        <module>rpc</module>
-        <module>message</module>
+        <module>core-domain</module>
+        <module>core-api</module>
+        <module>core-main</module>
     </modules>
 
 

+ 0 - 15
rpc/pom.xml

@@ -1,15 +0,0 @@
-<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-    <parent>
-        <artifactId>ExamCloud-service-core</artifactId>
-        <groupId>cn.com.qmth</groupId>
-        <version>0.1.0</version>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-
-    <artifactId>rpc</artifactId>
-
-
-</project>