轉:http://www.cnblogs.com/justinzhang/p/4983633.htmlhtml
一個Eclipse的工程,在pom中配置了若干依賴,須要將pom中全部的依賴所有打包進一個jar包中,能夠選擇的方案有maven-assembly-plugin和fatjar。之前採用fatjar進行打包,可是fatjar有很多問題,spring
1. 最近一次更新是在09年,沒法支持新版本的eclipse。apache
2.支持最高的jdk版本是1.7 eclipse
3. 打包速度慢(不是通常的慢)maven
4. 打成的jar包體積略大。oop
下面是一個Eclipse的工程,其中含有很多的maven依賴包:ui
採用export成runnable jar包的方式是行不通的,正確作法是在工程的pom.xml文件中配置maven-assembly-plugin,pom.xml的配置以下:url
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.cetc.di</groupId> <artifactId>hdfs</artifactId> <version>1.0</version> <packaging>jar</packaging> <name>hdfs</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdk.version>1.8</jdk.version> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId> maven-assembly-plugin </artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>com.cetc.di.App</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-hadoop</artifactId> <version>2.2.1.RELEASE</version> </dependency> </dependencies> </project>
執行maven4MyEclipse->Update Project…spa
最後執行Run as->Maven build..->Select..->選擇package目標。3d
目標執行後,能夠在target目錄下,找到生成的jar包:
使用Java Decompiler能夠看到打包後,jar包的內容以下:
PS.在這個打包的過程當中,還發現了一個和Hadoop配置相關的問題,將在下一篇文中中介紹。