首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

平添自己的JAR到远程仓库

2012-12-19 
添加自己的JAR到远程仓库POM.xml文件中添加:???distributionManagementrepositoryidfootstee/idn

添加自己的JAR到远程仓库

POM.xml文件中添加:?

?

?

<distributionManagement>     <repository>       <id>footstee</id>       <name>Internal Releases</name>     <url>http://localhost:8081/nexus/content/repositories/thirdparty</url>     </repository>   </distributionManagement>  

?

?Setting.xml中添加:

?

<server>     <id>footstee</id>     <username>repouser</username>     <password>repopwd</password>   </server>

?关键:id必须一致

?

接下来使用 maven deploy命令,可以将项目打包上传到远程仓库。

eclipse中可以新建maven命令执行deploy

热点排行