使用idea打jar包
程序员文章站
2024-02-02 11:17:46
...
1.在工程的pom.xml文件中添加打包插件
<!--打包的插件-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest> <!-- 注意 此为设置程序的主入口-->
<mainClass>所要打包的类及其包名</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
2.重新编译要打包的工程,build一下
3.选择single
4.进入到项目的工作空间找到“项目名-jar-with-dependencies.jar”,使用压缩软件打开,进入META-INF/MANIFEST.MF.查看是否为所想要的.jar文件。如果不是,说明pom.xml配置错了。更改之后重复上述操作。