記錄一下,之後少走彎路服務器
前提:已經搭建好nexus maven私服,地址192.168.110.240:9091maven
在maven的setting.xml中找到<mirrors></mirrors>標籤,在中間加上:url
<mirror> <id>nexus</id> <mirrorOf>central</mirrorOf> <url>http://192.168.110.240:9091/repository/maven-public/</url> </mirror>
找到<servers></servers>標籤,在中間加上:spa
<server> <id>nexus</id> <username>admin</username> <password>admin123</password> </server>
這裏的<id>標籤對應了<mirror>標籤的<id>,用戶名密碼就是maven私服的登陸帳戶密碼code
使用命令mvn deploy部署jar包:server
例如:xml
mvn deploy:deploy-file -Dfile=G:\hive_service.jar -DgroupId=com.cloudera.hive -DartifactId=hive-service -Dversion=v4-cdh-5.13.1 -Dpackaging=jar -Durl=http://192.168.110.240:9091/repository/maven-releases/ -DrepositoryId=nexus
一一解釋命令參數blog
-Dfile jar包文件路徑部署
-DgroupId groupIdit
-DartifactId artifactId
-Dversion version
-Dpackaging jar
-Durl 倉庫地址:
服務器上有幾個主要庫,release,snapshots ,3rdParty,分表表明:發行版,快照版,第三方,發佈到哪一個庫可自行根據須要選擇,點擊列表右邊的copy按鈕可看到對應庫的發佈地址,將該地址拷貝到-Durl參數中便可
如:
最後一個參數:
-DrepositoryId 配置的私服ID,即剛剛在setting.xml中的<mirror>下的<id>標籤中配置的內容