Browse Source

一起打包,子模块添加挑过检测

tags/正式3.2.0
王宁 2 years ago
parent
commit
1985b81fbb
2 changed files with 64 additions and 0 deletions
  1. 56
    0
      pom.xml
  2. 8
    0
      suser/pom.xml

+ 56
- 0
pom.xml View File

@@ -8,5 +8,61 @@
8 8
     <artifactId>cloud-schoolapi</artifactId>
9 9
     <version>1.0-SNAPSHOT</version>
10 10
 
11
+    <packaging>pom</packaging>
11 12
 
13
+    <modules>
14
+        <module>gateway</module>
15
+        <module>register</module>
16
+        <module>config</module>
17
+        <module>suser</module>
18
+        <module>sclass</module>
19
+        <module>slive</module>
20
+        <module>sstudy</module>
21
+        <module>sapi</module>
22
+    </modules>
23
+
24
+    <dependencyManagement>
25
+        <dependencies>
26
+            <dependency>
27
+                <groupId>com.xhkjedu</groupId>
28
+                <artifactId>gateway</artifactId>
29
+                <version>0.0.1-SNAPSHOT</version>
30
+            </dependency>
31
+            <dependency>
32
+                <groupId>com.xhkjedu</groupId>
33
+                <artifactId>register</artifactId>
34
+                <version>0.0.1-SNAPSHOT</version>
35
+            </dependency>
36
+            <dependency>
37
+                <groupId>com.xhkjedu</groupId>
38
+                <artifactId>config</artifactId>
39
+                <version>0.0.1-SNAPSHOT</version>
40
+            </dependency>
41
+            <dependency>
42
+                <groupId>com.xhkjedu</groupId>
43
+                <artifactId>suser</artifactId>
44
+                <version>0.0.1-SNAPSHOT</version>
45
+            </dependency>
46
+            <dependency>
47
+                <groupId>com.xhkjedu</groupId>
48
+                <artifactId>sclass</artifactId>
49
+                <version>0.0.1-SNAPSHOT</version>
50
+            </dependency>
51
+            <dependency>
52
+                <groupId>com.xhkjedu</groupId>
53
+                <artifactId>slive</artifactId>
54
+                <version>0.0.1-SNAPSHOT</version>
55
+            </dependency>
56
+            <dependency>
57
+                <groupId>com.xhkjedu</groupId>
58
+                <artifactId>sstudy</artifactId>
59
+                <version>0.0.1-SNAPSHOT</version>
60
+            </dependency>
61
+            <dependency>
62
+                <groupId>com.xhkjedu</groupId>
63
+                <artifactId>sapi</artifactId>
64
+                <version>0.0.1-SNAPSHOT</version>
65
+            </dependency>
66
+        </dependencies>
67
+    </dependencyManagement>
12 68
 </project>

+ 8
- 0
suser/pom.xml View File

@@ -69,6 +69,14 @@
69 69
                     </excludes>
70 70
                 </configuration>
71 71
             </plugin>
72
+            <plugin>
73
+                <!--编译跳过测试文件检查的生命周期-->
74
+                <groupId>org.apache.maven.plugins</groupId>
75
+                <artifactId>maven-surefire-plugin</artifactId>
76
+                <configuration>
77
+                    <skip>true</skip>
78
+                </configuration>
79
+            </plugin>
72 80
         </plugins>
73 81
     </build>
74 82
 

Loading…
Cancel
Save