将本地jar包安装到本地mvn仓库中,一条mvn命令就可以搞定!
1、命令格式: mvn install:install-file -Dfile={jar路径} -DgroupId={groupId 值} -DartifactId={artifactId值} -Dversion={版本号} -Dpackaging=jar -DlocalRepositoryPath={m2home path值,本地maven repo路径}
2、例子:
mvn install:install-file -DgroupId=com.aspose -DartifactId=aspose-words -Dversion=17.4.1 -Dpackaging=jar -Dfile=E:\temp\aspose-words-17.4.1.jar
mvn install:install-file -Dfile=E:\temp\latex-word-1.0.38.jar -DgroupId=com.latextoword -DartifactId=latex-word -Dversion=1.0.x -Dpackaging=jar
3、显示下面结果表示成功