业务需要写了一个javafx桌面程序,
idea打包好的jar 使用cmd命令行,通过java -jar 运行jar包报错xx-0.0.1-SNAPSHOT.jar中没有主清单属性
解决方法:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!-- 加 -->
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution></executions>
<!-- 加 --></plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
加上一下内容即可
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
打包后MANIFEST.MF文件如下,和我们盘丝的springboor,maven项目的MANIFEST.MF文件一致