MAV命令:
mvn install:install-file -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<版本号> -Dpackaging=<类型> -Dfile=<文件名>
说明:
-DgroupId=<groupId> : 设置项目代码的包名(一般用组织名)
-DartifactId=<artifactId> : 设置项目名或模块名
-Dversion==<版本号> : 版本号
-Dpackaging==<类型> : 什么类型的文件(jar包)
-Dfile=<文件名> : 指定jar文件路径与文件名(同目录只需文件名)
安装命令实例:
mvn install:install-file -DgroupId=com.topnav.third -DartifactId=sigar -Dversion=1.0 -Dpackaging=jar -Dfile=sigar-1.6.4.jar~~~
网友评论