浏览代码

构建配置将加解密类加入

郑杰 3 年之前
父节点
当前提交
3158b6a6da
共有 2 个文件被更改,包括 4 次插入13 次删除
  1. 4 0
      buyer-api/pom.xml
  2. 0 13
      framework/pom.xml

+ 4 - 0
buyer-api/pom.xml

@@ -30,6 +30,10 @@
30 30
             <plugin>
31 31
                 <groupId>org.springframework.boot</groupId>
32 32
                 <artifactId>spring-boot-maven-plugin</artifactId>
33
+                <configuration>
34
+                    <!-- maven打包时会将外部引入的jar包(比如在根目录下或resource文件下新加外部jar包)打包到项目jar -->
35
+                    <includeSystemScope>true</includeSystemScope>
36
+                </configuration>
33 37
             </plugin>
34 38
         </plugins>
35 39
     </build>

+ 0 - 13
framework/pom.xml

@@ -425,17 +425,4 @@
425 425
 
426 426
     </dependencies>
427 427
 
428
-    <build>
429
-        <plugins>
430
-            <plugin>
431
-                <groupId>org.springframework.boot</groupId>
432
-                <artifactId>spring-boot-maven-plugin</artifactId>
433
-                <configuration>
434
-                    <!-- maven打包时会将外部引入的jar包(比如在根目录下或resource文件下新加外部jar包)打包到项目jar -->
435
-                    <includeSystemScope>true</includeSystemScope>
436
-                </configuration>
437
-            </plugin>
438
-        </plugins>
439
-    </build>
440
-
441 428
 </project>