命令示例
mvn install:install-file -Dmaven.repo.local=本地仓库位置 -DgroupId=指定Jar包的开发团队,一般为公司域名倒写去掉www开头。例如百度就是com.baidu等 -DartifactId=开发的项目名称 -Dversion=文件版本 -Dpackaging=文件格式 jar/war -Dfile=文件位置
举个例子
pom.xml中的依赖
<!--TinyPinyin-->
<dependency>
<groupId>com.github.promeg</groupId>
<artifactId>tinypinyin</artifactId>
<version>2.0.3</version>
</dependency>
打开命令行执行以下,成功后maven就不会报错了
mvn install:install-file -Dmaven.repo.local=D:/maven/maven-lib1 -DgroupId=com.github.promeg -DartifactId=tinypinyin -Dversion=2.0.3 -Dpackaging=jar -Dfile=D:/development/tinypinyin-2.0.3.jar
命令行执行成功截图