From 5ed84eaec030109b0e6b77ae2667ed56e959871b Mon Sep 17 00:00:00 2001 From: songhuangfeng123 <shf18767906695@163.com> Date: 星期五, 12 八月 2022 16:58:30 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master --- pom.xml | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index d2da4fc..44d62fc 100644 --- a/pom.xml +++ b/pom.xml @@ -257,6 +257,11 @@ <build> <plugins> + <!-- 修改打包插件 + 修改打包方式jar为pom后 + 默认打包方式为spring-boot-maven-plugin + 等到后期打包的时候他会一直提示你,你引入的依赖不存在 + --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> @@ -266,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