Maven adds a jar not in the central repository

Source: Internet
Author: User

The jar file needs to be placed in the current directory, execute the following command, set the groupid,artifactid,version information to facilitate the project POM reference

mvn install:install-file-Dfile=xxx.jar -Dpackaging=jar -DgroupId=xxx -DartifactId=xxx -Dversion=x

Once executed, the jar can be loaded into the local repository, and the project may be directly used to introduce dependencies

such as Sqljdbc

mvn install:install-file-Dfile=sqljdbc4.jar -Dpackaging=jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0

Pom.xml on the Dependencies node (need to be consistent with information such as the previous install GroupID)

<dependency>

<groupId>com.microsoft.sqlserver</groupId>

<artifactid>sqljdbc4</artifactid>

<version>4.0</version>

</dependency>

Maven adds a jar not in the central repository

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.