【7.1.6】更新pom依赖

pull/83/MERGE
fengshuonan 3 years ago
parent 51f722c8b7
commit 67eaa0f535

@ -241,6 +241,29 @@
<!-- 如果没有该项配置则devtools不会起作用即应用不会restart --> <!-- 如果没有该项配置则devtools不会起作用即应用不会restart -->
<fork>true</fork> <fork>true</fork>
</configuration> </configuration>
<dependencies>
<dependency>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-layout</artifactId>
<version>1.0.28.RELEASE</version>
</dependency>
</dependencies>
</plugin>
<!-- 加入该配置maven package执行时会在target目录整理好依赖包 -->
<plugin>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-maven-plugin</artifactId>
<version>1.0.28.RELEASE</version>
<executions>
<execution>
<!-- Download the dependencies at build time -->
<id>resolve</id>
<goals>
<goal>resolve</goal>
</goals>
<inherited>false</inherited>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>

Loading…
Cancel
Save