将自己私有的jar包添加到本地Mvn仓库

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

 
  1. mvn install:install-file

  2. -DgroupId=包名

  3. -DartifactId=项目名

  4. -Dversion=版本号

  5. -Dpackaging=jar

  6. -Dfile=jar文件所在路径


以kettle-core.jar为例:

1、将kettle-core.jar文件放在“D:\JAR_LIB”目录下(该目录任意)

2、执行命令: 

 
  1. mvn install:install-file -Dfile=D:\JAR_LIB\kettle-core.jar -DgroupId=org.pentaho -DartifactId=kettle-core -Dversion=4.4.0 -Dpackaging=jar  -DgeneratePom=true -DcreateChecksum=true

这样maven向本地仓库导入 kettle-core.jar 包就成功了。

3.在项目的pom.xml文件中增加如下配置:

 
  1.       org.pentahogroupId>

  2.       kettle-coreartifactId>

  3.       4.4.0version>

  4. dependency>





来自为知笔记(Wiz)



转载于:https://my.oschina.net/u/1986568/blog/498976

你可能感兴趣的:(将自己私有的jar包添加到本地Mvn仓库)