jar 打包到本地maven仓库中

一、打包命令

1.1 命令说明

注意:

  • 在window中使用cmd,不要使用PowerSheell
  • jar包路径中不要带中文。
# 安装指定文件到本地仓库命令:mvn install:install-file
# Dfile 设置该jar包文件所在的路径与文件名
mvn  install:install-file  -DgroupId=xxxx.xxx.xxx -DartifactId=xxx-xxx-xxx  -Dversion=xxx.xxx.xxx  -Dpackaging=jar -Dfile=E:\xxx\xxx\xxx.jar

二、添加依赖

	
	    
		xxxx.xxx.xxx
		
		xxx-xxx-xxx
		
		xxx.xxx.xxx
	

你可能感兴趣的:(maven)