您的位置:首页 > 其它

Install jar manually into maven and Nexus

2014-05-13 17:41 411 查看
Sometimes the maven building just needs one or more 3rd party jars, and the jars cannot be downloaded and installed automatically by Internet.

Then you can install these jars manually.

1st. Install a 3rd party jar package into maven repositor
mvn install:install-file -DgroupId=<jar's groupdId> -DartifactId=<artifactId> -Dpackaging=jar -Dversion=<version> -Dfile=<file location> -DgeneratePom=true
Just replace <> placeholder with your real case.

2nd. Install a 3rd party jar package into Nexus
For Nexus, you can only upload a 3rd party jar into the repository "3rd party", which is already installed as default as you setup Nexus server. Just click "3rd party" repository, and you will find a button called "Artifact upload" on the bar in the middle of the page.

本文出自 “BitterJava” 博客,请务必保留此出处http://rickqin.blog.51cto.com/1096449/1410642
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: