Use Eclipse to upload a local project into a jar package to the MAVEN repository

Source: Internet
Author: User

In a project that uses MAVEN, it is sometimes necessary to make a local project into a jar package and upload it to the Mevan repository.

The operation is as follows:

1. Configure the user name and password for the settings file in Maven as follows:

<servers>

<server>
<id>releases</id>
<username>admin</username>
<password>admin</password>
</server>

</servers>

2. Configure the uploaded Maven repository path in the Pom file in the project that needs to be hit as a jar:

<distributionManagement>
<repository>
<id>releases</id>
<name>deploy server</name>
<url>http://192.168.1.1:9000/nexus/content/repositories/thirdparty/</url>
</repository>
</distributionManagement>

3. Set in the run configuration in eclipse, such as:

4. Click to run

prompt, if an error occurs that is unauthorized, it indicates that the user information in the settings configuration error

Use Eclipse to upload a local project into a jar package to the MAVEN repository

Related Article

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.