The MAVEN program is packaged into a single jar Part 2--Maven shade Plugin

Source: Internet
Author: User
Tags maven shade plugin

The

mentioned earlier that assembly in the process of unpack and repackage will not merge the same name of the file but directly ignored, so will cause some problems, so we finally chose the file merge function shade plugin, implemented as follows:

     <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactid>mave
                N-shade-plugin</artifactid> <version>2.4.3</version> <executions>
                        <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> &LT;CONFIGURATION&G
                        T <finalName>executable</finalName> &LT;SHADEDARTIFACTATTACHED&GT;TRUE&LT;/SHADEDARTIFAC
                        Tattached> <shadedClassifierName>Shaded</shadedClassifierName>
                            <shadedTestJar>true</shadedTestJar> <transformers>
           <transformer implementation= "Org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" >                     <mainclass>com.cloud ..... Publishertest</mainclass> </transformer> <transform Er implementation= "Org.apache.maven.plugins.shade.resource.AppendingTransformer" > <r
                            Esource>meta-inf/spring.handlers</resource> </transformer>
                                <transformer implementation= "Org.apache.maven.plugins.shade.resource.AppendingTransformer" >
                            <resource>META-INF/spring.schemas</resource> </transformer> <transformer implementation= "Org.apache.maven.plugins.shade.resource.AppendingTransformer" &
                                Gt
                        <resource>META-INF/spring.tooling</resource> </transformer> </transformers> </configuration> </execution> </executions> </plugin> 

But in this way, I need to put the test class,test resouce in main because the shade package doesn't contain test-related stuff.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.