1. 程式人生 > >Maven安裝第三方jar包

Maven安裝第三方jar包

用阿里的fastjson-1.1.37.jar做試例

安裝第三方jar包到本地倉庫

第一種方法

進入jar包所在目錄執行cmd

mvn install:install-file -DgroupId=com.alibaba -DartifactId=fastjson -Dversion=1.1.37 -Dfile=fastjson-1.1.37.jar -Dpackaging=jar

第二種方法

直接執行cmd, -Dfile寫jar所在具體地址

mvn install:install-file -DgroupId=com.alibaba -DartifactId=fastjson -Dversion=1.1.37 -Dpackaging=jar -Dfile=C:\my_java\fastjson-1.1.37.jar

安裝第三方jar包到私服

首先在settings配置檔案中新增登入私服第三方登入資訊

<server>
   <id>thirdparty</id>
   <username>admin</username>
   <password>admin123</password>
</server>

第一種方法

進入jar包所在目錄執行cmd, Durl為上傳地址

mvn deploy:deploy-file -DgroupId=com.alibaba -DartifactId=fastjson -Dversion=1.1.37 -Dpackaging=jar -Dfile=fastjson-1.1.37.jar -Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty

第二種方法

直接執行cmd, -Dfile寫jar所在具體地址

mvn deploy:deploy-file -DgroupId=com.alibaba -DartifactId=fastjson -Dversion=1.1.37 -Dpackaging=jar -Dfile=C:\my_java\fastjson-1.1.37.jar -Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty