maven生成jar,提示没有“没有主清单属性”
在写一个简单的java se程序打包成jar报 “没有主清单属性”,原因是mave打包插件没做配置,在pom.xml加下如下配置,并相应修改主main全限定类名。
修改pom.xml
<build> <finalName>App</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.ay.AppTest</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build>
然后再次使用maven命令clean、compile、package命令打包,并使用其中类似App-1.0-SNAPSHOT.jar的包
jar -jar xxx.jar
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步