小记:pom文件的 spring-boot-maven-plugin会报红,加版本号也无效

Posted 落笔云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小记:pom文件的 spring-boot-maven-plugin会报红,加版本号也无效相关的知识,希望对你有一定的参考价值。

解决方法:

  <build>
    <plugins>
      <!-- 打jar包时如果不配置该插件,打出来的jar包没有清单文件 -->
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <version>2.3.5.RELEASE</version>
        <executions>
          <execution>
            <goals>
              <goal>repackage</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <fork>true</fork>
          <addResources>true</addResources>
        </configuration>
      </plugin>
    </plugins>
  </build>

以上是关于小记:pom文件的 spring-boot-maven-plugin会报红,加版本号也无效的主要内容,如果未能解决你的问题,请参考以下文章

找不到 io.projectreactor:reactor-bom:pom:Bismuth-M1

springboot小记

小记:父子工程项目打包报错-程序包com.XXX.XXX不存在

小记:父子工程项目打包报错-程序包com.XXX.XXX不存在

spring session使用小记

小记: Mybatis重拾之路(SpringBoot整合Mybatis)