通过maven,给没有pom文件的jar包生成pom文件,maven项目引入本地jar包
问题一:
经常遇到公司私服或者中央仓库没有的jar包,然后通过各种渠道找到了解决问题的jar包,但是发现没有pom文件,maven项目引入之后,还有maven在本地仓库找不到对应jar包的pom文件,打包的时候会在私服下载对应jar包的pom文件而抛出异常,通过maven就可以解决这个问题。前提是你安装了maven,然后在命令行执行命令就OK了!!!
[ERROR] Failed to execute goal on project AccountEJob: Could not resolve dependencies for project AccountEJob:AccountEJob:jar:1.1.1: Failed to collect dependencies at org.apache.hive:hive-jdbc:jar:1.2.1000.2.6.1.0-129: Failed to read artifact descriptor for org.apache.hive:hive-jdbc:jar:1.2.1000.2.6.1.0-129: Could not transfer artifact org.apache.hive:hive-jdbc:pom:1.2.1000.2.6.1.0-129 from/to nexus (http://XXX.XXX.XXX.XXX:8081/nexus/content/groups/public): Connect to XXX.XXX.XXX.XXX:8081/ [/XXX.XXX.XXX.XXX:8081/] failed: Connection timed out: connect -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
命令:
mvn install:install-file -DgroupId=novaplanet.net -DartifactId=commons-lang -Dversion=2.5 -Dfile=F:/commons-lang-2.5.jar -Dpackaging=jar -DgeneratePom=true
DgroupId:项目组织唯一的标识符,自己随便起名
DartifactId:项目唯一的标识符,自己可以随便起
Dversion:项目版本
Dfile:jar包路径(绝对路径)
DgeneratePom:是否生成pom文件,ture:生成,false:不生成
执行成功,会在本地的maven jar包目录看到以下结果
问题二:
自己本地的jar包,公司私服上没有,如何引用?先在项目的resource目录下新建lib文件夹,然后将你本地的jar包copy过去(这种最好上传至公司私服)
在maven的配置如下:
novaplanet.net javapns-jdk16-163 1.2 system ${project.basedir}/src/main/resources/lib/javapns-jdk16-163-1.2.jar
build插入下面配置:
org.springframework.boot spring-boot-maven-plugin true
我的实例配置:
4.0.0 com.teset demo 0.0.1-SNAPSHOT jar demo Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 2.0.3.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test novaplanet.net bcprov-jdk16-145 1.2 system ${project.basedir}/src/main/resources/lib/bcprov-jdk16-145-1.2.jar novaplanet.net commons-lang 2.5 system ${project.basedir}/src/main/resources/lib/commons-lang-2.5.jar novaplanet.net javapns-jdk16-163 1.2 system ${project.basedir}/src/main/resources/lib/javapns-jdk16-163-1.2.jar org.springframework.boot spring-boot-maven-plugin true
引入之后,编译项目,编译成功不一定代表引入成功了,接着打包,看jar包中的classes下的lib中有没有你需要引入的jar包
问题三:本地maven仓库有很多.lastUpdated结尾的文件,这是为什么?
1、可能是jar的坐标有问题,即groupId、artifactId、version拼写有问题;
2、jar包压根就不存在;
3、私服镜像地址有问题;
4、网络问题,比如本地无法使用ipv6网络,需要强制指定ipv4,具体操作请查看这篇文章
由于以上问题,导致jar包无法下载,会在对于的路径下,生成.lastUpdated文件,所以我们需要删除本地仓库.lastUpdated重新下载,要不然会影响再次下载和后续的编译运行。
linux、macos环境下,批量删除
find 私服路径 -name "*lastUpdated*" | xargs rm -rf
标签:
相关文章
-
无相关信息