Maven adds jar packages to the local repository and to the project

Source: Internet
Author: User

When Maven builds a project, it may refer to other projects in some companies. Or the referenced jar package is not loaded in the MAVEN main repository.

At this point we can install the jar package we need into the local repository . Here's how.


<dependency>
650) this.width=650; "align=" Top "src=" Http://www.blogjava.net/Images/OutliningIndicators/None.gif "/> < Groupid>org.springframework</groupid>
650) this.width=650; "align=" Top "src=" Http://www.blogjava.net/Images/OutliningIndicators/None.gif "/> < Artifactid>spring-context-support</artifactid>
650) this.width=650; "align=" Top "src=" Http://www.blogjava.net/Images/OutliningIndicators/None.gif "/> < Version>3.1.0.release</version>
650) this.width=650; "align=" Top "src=" Http://www.blogjava.net/Images/OutliningIndicators/None.gif "/></ Dependency>


The commands for Maven install JAR packages are:

650) this.width=650; "align=" Top "src=" Http://www.blogjava.net/Images/OutliningIndicators/None.gif "/>mvn The position of the Install:install-file-dfile=jar package-dgroupid= above the groupid-dartifactid= above the artifactid-dversion= above the version- Dpackaging=jar


For example:
The jar package I downloaded was placed in the D:\MVN directory (D:\mvn\spring-context-support-3.1.0.RELEASE.jar)
So the command I typed in cmd would be:

MVN install:install-file-dfile=d:\mvn\spring-context-support-3.1.0.release.jar-dgroupid=org.springframework -dartifactid=spring-context-support-dversion=3.1.0.release-dpackaging=jar


of course, you can also add directly to the project :

<dependency>
<groupId>struts</groupId>
<artifactId>struts</artifactId>
<version>1.3.10</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/javabuilder.jar</systemPath>
</dependency>

Reference blog:

Http://www.tmser.com/post-177.html

This article is from the "Nothing-skywalker" blog, please be sure to keep this source http://tianxingzhe.blog.51cto.com/3390077/1653735

Maven adds jar packages to the local repository and to the project

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.