1、现在maven官网仓库找到相应依赖
Maven Repository: Search/Browse/Explore (mvnrepository.com)
2、下载相应jar包
3、使用maven命令在jar所在文件加内cmd运行
注意修改参数
-DgroupId:表示jar对应的groupId
<groupId>io.confluent</groupId>
-DartifactId: 表示jar对应的artifactId<artifactId>kafka-schema-registry-client</artifactId>
-Dversion: 表示jar对应的 version<version>4.1.1</version>
命令
mvn install:install-file -DgroupId=fr.opensagres.xdocreport -DartifactId=fr.opensagres.xdocreport.document -Dversion=2.0.1 -Dpackaging=jar -Dfile=fr.opensagres.xdocreport.document-2.0.1.jar
结果
注意看文件生成位置
最后把生成的文件放到自己的本地maven仓库内即可