maven添加非官方jar包到本地庫

        在maven的使用過程當中,免不了須要將咱們本身開發的jar包添加到maven倉庫,供其餘項目調用,除了將jar提交到maven的中央倉庫方法外,maven還提供了將本地jar添加到本地maven庫的方法。bash

        一、命令介紹

             mvn install:install-file   maven

            -DgroupId=<your_group_name>    svn

            -DartifactId=<your_artifact_name>    spa

            -Dversion=<snapshot>    code

            -Dfile=<path_to_your_jar_file>    xml

            -Dpackaging=jar   開發

            -DgeneratePom=true cmd

        二、實例演示

cmd --> 

//如下命令用於將:F:\phoenixplugin\phoenix-svnclient.jar 安裝到本地的maven倉庫
//命令執行成功後,在本地倉庫路徑:org/phoenixframe/phoenix-svnclient/1.1.1/目錄下就能看到了

C:\Users\mengfeiyang>mvn install:install-file -DgroupId=org.phoenixframe -Dartif
actId=phoenix-svnclient -Dversion=1.1.1 -Dfile=F:\phoenixplugin\phoenix-svnclient.jar -Dpackaging=jar -DgeneratePom=true

        三、引用方法

像調用maven中央倉庫的jar包方法同樣。io

<dependency>
			<groupId>org.phoenixframe</groupId>
			<artifactId>phoenix-svnclient</artifactId>
			<version>1.1.1</version>
		</dependency>

在pom.xml中加上以上代碼後,maven就會自動將phoenix-svnclient.jar引入到當前工程中。class

相關文章
相關標籤/搜索