Maven工程java -jar时提示xxx-SNAPSHOT.jar中没有主清单属性

时间:2022-07-23
本文章向大家介绍Maven工程java -jar时提示xxx-SNAPSHOT.jar中没有主清单属性,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

pom.xml中添加以下内容,再重新mvn compile即可

<build>
  <plugins>
  	<plugin>
  		<groupId>org.springframework.boot</groupId>
 		<artifactId>spring-boot-maven-plugin</artifactId>
 		<executions>
          <execution>
            <goals>
              <goal>repackage</goal>
            </goals>
          </execution>
        </executions>
  	</plugin>
  </plugins>
 </build>