Maven 添加本地Jar

把Jar添加到Maven本地仓库

mvn install:install-file -Dfile=xxx.jar -DgroupId=org.test -DartifactId=tools -Dversion=1.0 -Dpackaging=jar

参数说明

Dfile: JAR文件的本地路径
DgroupId: groupId(自行填写,引用时需要一致)
DartifactId: artifactId (自行填写,引用时需要一致)
Dversion: 版本号
Dpackaging: JAR(打包类型)

在pom.xml文件中引用


  org.test
  tools
  1.0

你可能感兴趣的:(Maven 添加本地Jar)