mavean導入本地倉庫
阿新 • • 發佈:2017-07-10
執行 artifact 重要 dos images alt oracle 否則 art
當你剛開始用mavean的時候可能還沒有發現mavean導入本地倉庫方法的重要性,但是隨著經常使用mavean項目就會發現,有些jar包mavean從網上的mavean倉庫中無法導入,例如oracle的jar等等。
mavean導入本地倉庫方法:
1.在電腦上打開DOS命令窗口
2.輸入如下命令
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
解釋上面的命令:
mvn install:install-file
-Dfile=jar包的位置
-DgroupId=在pom.xml的groupId
-DartifactId=在pom.xml的artifactId
-Dversion=在pom.xml的version
-Dpackaging=jar
舉個例子:
mvn install:install-file -Dfile=C:\Users\raymond\activation.jar -DgroupId=activation -DartifactId=activation -Dversion=1.0.2 -Dpackaging=jar
在pom.xml中輸入
<dependency> <groupId>activation</groupId> <artifactId>activation</artifactId> <version>1.0.2</version> </dependency>
執行上面的mvn語句後,如果出現下面圖片中箭頭所指的SUCCESS就成功了,否則失敗,查看原因。
3.在pom.xml輸入
<dependency> <groupId>-DgroupId的值</groupId>
<artifactId>-DartifactId的值</artifactId>
<version>-Dversion的值</version>
</dependency>
mavean導入本地倉庫