赞
踩
Maven中最重要的是POM文件,其打包也是基于该文件的,在POM文件中配置插件,可以实现将Maven项目打包成可执行jar包
依赖如下:
<build> <plugins> <!-- 将项目打包成可执行jar包 --> <plugin> <artifactId> maven-assembly-plugin </artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>cn.zut.edu.helloworld.HelloWorld</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
其中,最重要的是manifest这个元素值,cn.zut.edu.helloworld是我们的包,而HelloWorld就是我们的类了,我们要执行的就是这个类。
打包方式如下:
如果打包失败,就要在此处选择maven clean,来删除target目录下的数据
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。