maven安裝和上傳jar
阿新 • • 發佈:2018-11-02
maven安裝jar包
mvn install:install-file
-Dfile=/home/chenxu49/javaworkspace/LQ/ojdbc6.jar
-DgroupId=org.oracle
-DartifactId=ojdbc6
-Dversion=11.2.0.1.0
-Dpackaging=jar
maven上傳nexus jar包
mvn deploy:deploy-file
-DgroupId=org.oracle
-DartifactId=ojdbc6
-Dversion=11.2.0.1.0
-Dpackaging=jar
-Dfile=/home/chenxu49/javaworkspace/LQ/ojdbc6.jar
-Durl=http://10.124.210.40:8081/repository/maven/
-DrepositoryId=thirdparty
一行上傳
mvn deploy:deploy-file -DgroupId=org.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.1.0 -Dpackaging=jar -Dfile=/home/chenxu49/javaworkspace/novcs/LQ/ojdbc6.jar -Durl=http://10.124.210.40:8081/repository/maven-releases -DrepositoryId=nexus-releases
其中Durl 是上傳nexus的倉庫地址。
DrepositoryId是你在maven的setting.xml檔案裡配置的server的ID,這樣才知道你上傳的nexus的賬號和密碼
<server>
<id>nexus-releases</id>
<username>admin</username>
<password>admin123</password>
</server>