1. 程式人生 > >mavean專案中,對非mavean管理的第三方jar包處理

mavean專案中,對非mavean管理的第三方jar包處理

通常情況下用mavean打包的時候,對非mavean管理的第三方jar包只需要在pom.xml 里加入如下配置就行了。

<plugin>
   <artifactId>maven-compiler-plugin</artifactId>
   <configuration>
      <compilerArguments>        
        

<extdirs>${basedir}/dlls</extdirs>
      </compilerArguments>
   </configuration>
</plugin>

但有的時候這樣行不通。需要把jar包安裝到mavean本地資料庫裡。然後由mavean來管理它們。

將本地的jar檔案安裝到本地repository中,具體步驟如下:
1、準備好本地的jar檔案
2、使用如下命令安裝jar檔案
      mvn install:install-file -Dfile=abc.jar 
     -DgroupId=com.mycompany.myproduct -DartifactId=abc 
     -Dversion=1.0 -Dpackaging=jar -DgeneratePom=true 
    其中,-Dfile制定jar檔案的位置。執行完該命令後,會在本地repository(通常是$HOME/.m2目錄)中出現一個目錄(com),在其下會有一個abc-1.0.jar的檔案和一個自動產生的pom檔案。
3、安裝完之後,在另一個應用程式中使用它的時候,只要在pom檔案中指定相應的dependency就可以,如:
     <dependencies>
          <dependency>
          <groupId>com.mycompany.myproduct</groupId>
          <artifactId>abc</artifactId>
          <version>1.0</version>
       </dependency>
    </dependencies>

上面那段plugin配置就不需要了。

 

進入資料夾D:\svn\Bigdata\IOT\iot-village-consumer\libs

mvn install:install-file -Dfile=Digests.jar  -DgroupId=com.mycompany.myproduct -DartifactId=Digests -Dversion=1.0 -Dpackaging=jar -DgeneratePom=true