jar中没有主清单属性解决办法
Posted niuniu0108
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jar中没有主清单属性解决办法相关的知识,希望对你有一定的参考价值。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
以上是关于jar中没有主清单属性解决办法的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot: 运行maven打包的jar包报错-jar中没有主清单属性