Browse Source

Update pom.xml

更新pom.xml 文件打包插件配置
master
DaiShuaishuai 2 years ago committed by GitHub
parent
commit
bc9dbd38ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      pom.xml

24
pom.xml

@ -58,19 +58,19 @@
</testResources> </testResources>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<version>2.12.4</version> <executions>
<execution>
<phase>package</phase>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration> <configuration>
<skipTests>true</skipTests> <includeSystemScope>true</includeSystemScope>
</configuration> <mainClass>cn.dashan.chatbot.ChatBotApplication</mainClass>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>

Loading…
Cancel
Save