spring boot maven 打包 本地依赖的jar

2020-12-01 10:54:20 浏览数 (1)

解决方案:

代码语言:javascript复制
<build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration>
          <!-- 工程主入口-->
          <mainClass>com.loongship.web.ApiWebApplication</mainClass>
          <includeSystemScope>true</includeSystemScope>
          <fork>true</fork>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>repackage</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

0 人点赞