maven 手工裝入本地包11
阿新 • • 發佈:2018-09-18
命令 maven 關系 tor apach install pack hive 手工
<!-- https://mvnrepository.com/artifact/org.apache.hive/hive-serde -->
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-serde</artifactId>
<version>1.2.1</version>
</dependency>
pom.xml節點和 安裝命令之間參數對應關系。
DgroupId--->groupId
DartifactId--->artifactId
Dversion--->version
Dpackaging:就是安裝文件的格式。
Dfile:就是待安裝的臨時文件目前的路徑。
要執行的命令:cmd 進入黑窗執行命令。
mvn install:install-file -DgroupId=org.apache.hive -DartifactId=hive-serde -Dversion=1.2.1 -Dpackaging=jar -Dfile=D:\ApacheGroup\hive-serde-1.2.1.jar
maven 手工裝入本地包11