Maven打包并入本地jar包
2021-06-10 03:05
标签:图片 技术 nap snapshot maven inf str image loading 1.将需要手动引入的包放在项目目录下,如lib目录下; 修改pom文件,引入依赖并且将scope设置为system
2. 配置maven打包插件 mvn install:install-file -Dfile=jar包的位置 -DgroupId=上面的groupId -DartifactId=上面的artifactId -Dversion=上面的version -Dpackaging=jar eg.:mvn install:install-file -Dfile=/root/.m2/yunst-sdk-0.0.1-SNAPSHOT.jar -DgroupId=com.allinpay -DartifactId=yunst-sdk -Dversion=0.0.1 -Dpackaging=jar pom引入: 只需修改DgroupId、DartifactId、Dversion的值即可 -Dfile:jar存放的位置,安装前放置好,安装完可以删除。 Maven打包并入本地jar包 标签:图片 技术 nap snapshot maven inf str image loading 原文地址:https://www.cnblogs.com/kaspar/p/14468069.html
方法一:
(pom文件指定jar包目录进行引入)
方法二:
(将jar包安装至本地仓库后使用pom文件直接引入)
上一篇:[Python] ValueError: Unknown resampling filter
下一篇:python 3 解决 ERROR: Could not find a version that satisfies the requirement xxx 的问题