|
@@ -81,7 +81,7 @@
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
- <version>2.1.3.RELEASE</version>
|
|
|
+ <version>2.7.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--配置文件处理器-->
|
|
@@ -95,10 +95,21 @@
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
- <!--<plugin>-->
|
|
|
- <!--<groupId>org.springframework.boot</groupId>-->
|
|
|
- <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
|
- <!--</plugin>-->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <skip>true</skip>
|
|
|
+ <mainClass>com.syjy.calculate.CalculationApplication</mainClass>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
|
|
|
<!--跳过test类-->
|
|
|
<plugin>
|