首页 > 其他 > 详细

用shade 打包,过滤掉一些不想打进big jar内的文件

时间:2014-05-30 08:08:05      阅读:439      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <executions>
        <execution>
            <phase>package</phase>
            <goals>
                <goal>shade</goal>
            </goals>
            <configuration>
                <transformers>
                    <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                        <mainClass>com.mycompany.MainClass</mainClass>
                    </transformer>
                </transformers>
                <filters>
                    <filter>
                        <artifact>org.apache.hadoop:*</artifact>
                        <excludes>
                            <exclude>*.xml</exclude>
                        </excludes>
                    </filter>
                </filters>
                <shadedArtifactAttached>true</shadedArtifactAttached>
                <shadedClassifierName>standalone</shadedClassifierName>
            </configuration>
        </execution>
    </executions>
</plugin>
bubuko.com,布布扣

 

用shade 打包,过滤掉一些不想打进big jar内的文件,布布扣,bubuko.com

用shade 打包,过滤掉一些不想打进big jar内的文件

原文:http://www.cnblogs.com/yuankui/p/3756883.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!