Maven Learning Notes (iii)

Source: Internet
Author: User

Sometimes we may need to package an executable jar package in the project, I also recently met, very silly and naïve to use the following configuration:

< Packaging >jar</packaging>

As always, the effect is good, packaging success, a implementation, dumbfounded, the JVM is very rude throws an exception: XXX does not have a master list exception. Online search information, a large pile of programs:

 <plugin>    <groupId>Org.apache.maven.plugins</groupId>    <Artifactid>Maven-jar-plugin</Artifactid>    <Configuration>        <Archive>            <Manifest>                                            <MainClass>"Entry Path"</MainClass>            </Manifest>        </Archive>    </Configuration></plugin>

Specify MainClass can, and fart on the top of the package execution, incredibly wrong, can't find a dependency. In general, this is possible, but my scene is relatively complex, the current project also relies on some other dependent packages, need to be packaged with these dependent files are also packaged in, Maven in the jar packaging, generally do not package dependencies, the solution is as follows:

To be Continued ...

Done, make a record, for follow-up inspection.

Maven Learning Notes (iii)

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.