maven的工程在idea中导入时,始终建立不了jar包的依赖关系(maven library dependencies)...

现象:

1.查看Module的属性(F4),可以看到没有任何建立本地的库的依赖关系:

   maven的工程在idea中导入时,始终建立不了jar包的依赖关系(maven library dependencies)..._第1张图片

 

2.看Maven工程的依赖关系也有错误

   maven的工程在idea中导入时,始终建立不了jar包的依赖关系(maven library dependencies)..._第2张图片

解决方式:

1.打开maven的输出信息为DEBUG,重新通过maven compile一下

  maven的工程在idea中导入时,始终建立不了jar包的依赖关系(maven library dependencies)..._第3张图片

 

得到输出警告信息类似:

[WARNING] The POM for org.apache.geronimo.specs:geronimo-stax-api_1.0_spec:jar:1.0.1 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.apache.geronimo.specs:geronimo-stax-api_1.0_spec:1.0.1
[FATAL] Non-parseable POM C:\Users\ABC\.m2\repository\org\apache\geronimo\genesis\config\config\1.1\config-1.1.pom: attribute value must start with quotation or apostrophe not j (position: TEXT seen \n
                    
                    

你可能感兴趣的:(IDEA,maven)