方式一:IDEA 打包
如图:
方式二:plugin 打包
<properties>
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.5.3</version><relativePath/> <!-- lookup parent from repository --></parent><groupId>com.gaoshan</groupId><artifactId>ebpc</artifactId><version>0.0.1-SNAPSHOT</version><name>ethBlockPullClient</name><description>ethBlockPullClient</description><properties><java.version>11</java.version><skipTest>true</skipTest></properties><dependencies>
说明:这种方式没有进行成功的验证
方式三:mvn 命令行打包
mvn install -DskipTests
mvn install -Dmaven.test.skip=true
