将jar包安装到本地repository中
Posted 19940330a
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将jar包安装到本地repository中相关的知识,希望对你有一定的参考价值。
mvn install:install-file -Dfile=fastjson-1.2.26.jar -DgroupId=com.alibaba.fastjson -DartifactId=com.alibaba.fastjson -Dversion=1.2.26 -Dpackaging=jar
-DgroupId=<groupId> : 设置项目代码的包名(一般用组织名)
-DartifactId=<artifactId> : 设置项目名或模块名
-Dversion=1.2.26 : 版本号
-Dpackaging=jar : 什么类型的文件(jar包)
-Dfile=<myfile.jar> : 指定jar文件路径与文件名(同目录只需文件名)
以上是关于将jar包安装到本地repository中的主要内容,如果未能解决你的问题,请参考以下文章