安装jar包到本地仓库
Posted 束发读诗书
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装jar包到本地仓库相关的知识,希望对你有一定的参考价值。
1、控制台安装
安装指定文件到本地仓库命令:
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.baidu -DartifactId=ueditor -Dversion=1.0.0 -Dpackaging=jar -Dfile=ueditor-1.1.2.jar
2、eclipse安装
(1)File -->import -->Maven -->instal or deploy an artifact to a Maven repository
(2)填写相关信息,如Maven坐标,具体参考下图。完成后点击Finish。
以上是关于安装jar包到本地仓库的主要内容,如果未能解决你的问题,请参考以下文章