本地jar包添加失败

本地jar包添加失败

将jar添加到本地仓库,不推荐使用这种方法!这种方法会永久的将jar包保存在本地文件,其他人从git拉取项目会获取不到该文件。使用这种方法不要将pom文件上传

第一种方式:使用命令将jar包添加到本地库

安装指定文件到本地仓库命令:mvn install:install-file
-DgroupId=<groupId>                设置项目代码的包名(一般用组织名)
-DartifactId=<artifactId>    设置项目名或模块名
-Dversion=1.0.0                        版本号
-Dpackaging=jar                         什么类型的文件(jar包)
-Dfile=<myfile.jar>                指定jar文件路径与文件名(同目录只需文件名)

安装实例:mvn install:install-file -DgroupId=com.aspose -DartifactId=aspose-cells -Dversion=8.5.2 -Dpackaging=jar -Dfile=D:\s_work\项目名称\WebContent\WEB-INF\lib\aspose-cells-8.5.2.jar

第二种方式:使用eclipse 安装 jar包到本地
File -> Import -> Install or deploy an artifact to a Maven repository 选择jar包所在路径,输入
-DgroupId=         设置项目代码的包名(一般用组织名)
-DartifactId=        设置项目名或模块名
-Dversion=1.0.0   版本号
本地jar包添加失败_第1张图片
本地jar包添加失败_第2张图片

你可能感兴趣的:(Maven,maven)