From c13d39cf5032205f454ea7a11740e601be671eb5 Mon Sep 17 00:00:00 2001
From: SZH <szh_hello@163.com>
Date: 星期四, 11 八月 2022 18:41:29 +0800
Subject: [PATCH] 修改数据源配置

---
 pom.xml |   28 +++++++++++++++++++++++-----
 1 files changed, 23 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 26eefb3..44d62fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,6 +14,10 @@
         <module>goal-manage/goal-manage-rpc-provider</module>
         <module>emergency/emergency-service</module>
         <module>emergency/emergency-rpc-provider</module>
+        <module>equipment/equipment-service</module>
+        <module>equipment/equipment-rpc-provider</module>
+        <module>incident-manage/incident-manage-service</module>
+        <module>incident-manage/incident-manage-rpc-provider</module>
         <module>safePlatfrom-out-web</module>
     </modules>
 
@@ -128,6 +132,13 @@
                 <version>${com.alibaba.cloud.version}</version>
             </dependency>
 
+
+            <dependency>
+                <groupId>commons-beanutils</groupId>
+                <artifactId>commons-beanutils</artifactId>
+                <version>${commons.utils.version}</version>
+            </dependency>
+
         </dependencies>
     </dependencyManagement>
 
@@ -184,11 +195,6 @@
             <version>${poi.version}</version>
         </dependency>
 
-        <dependency>
-            <groupId>commons-beanutils</groupId>
-            <artifactId>commons-beanutils</artifactId>
-            <version>${commons.utils.version}</version>
-        </dependency>
 
         <!-- redis连接 -->
         <dependency>
@@ -251,6 +257,11 @@
 
     <build>
         <plugins>
+            <!-- 修改打包插件
+                修改打包方式jar为pom后
+                默认打包方式为spring-boot-maven-plugin
+                    等到后期打包的时候他会一直提示你,你引入的依赖不存在
+             -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
@@ -260,6 +271,13 @@
                     <target>1.8</target>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <skipTests>true</skipTests>    <!--默认关掉单元测试 -->
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 

--
Gitblit v1.9.2