内容简介:版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/kongxx/article/details/83990244
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/kongxx/article/details/83990244
问题描述
这两天在编译 kettle 8.2.0.0 的时候突然开始报错
[ERROR] Failed to execute goal on project kettle-dbdialog: Could not resolve dependencies for project pentaho-kettle:kettle-dbdialog:jar:8.2.0.0-311: Could not find artifact org.eclipse.core:commands:jar:3.3.0-i20070605-0010 in pentaho-public (http://nexus.pentaho.org/content/groups/omni/) -> [Help 1]
问题原因
org/eclipse/core/commands/模块存在两个版本,注意其中 “I” 和 “i” 3.3.0-I20070605-0010 3.3.0-i20070605-0010
检查了一下下面的地址,发现其下没有小写i的目录,只有大写I的目录,估计是这几天第三方包有改过名字所导致的。
https://nexus.pentaho.org/content/groups/omni/org/eclipse/core/commands/
解决办法
建立几个软连接,使3.3.0-i20070605-0010目录和其下包生效
cd ~/.m2/repository/org/eclipse/core/commands rm -rf 3.3.0-i20070605-0010 ln -s 3.3.0-I20070605-0010 3.3.0-i20070605-0010 cd ~/.m2/repository/org/eclipse/core/commands/3.3.0-I20070605-0010 ln -s commands-3.3.0-I20070605-0010.jar commands-3.3.0-i20070605-0010.jar ln -s commands-3.3.0-I20070605-0010.jar.sha1 commands-3.3.0-i20070605-0010.jar.sha1 ln -s commands-3.3.0-I20070605-0010.pom commands-3.3.0-i20070605-0010.pom ln -s commands-3.3.0-I20070605-0010.pom.sha1 commands-3.3.0-i20070605-0010.pom.sha1
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- XenServer编译内核模块
- XenServer编译内核模块
- 试读angular源码第四章:angular模块及JIT编译模块
- 使用babel避免webpack编译运行时模块依赖
- 为NGINX和NGINX Plus编译第三方动态模块
- 模块化-Application多module共存编译生成解决方案
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Learn Python 3 the Hard Way
Zed A. Shaw / Addison / 2017-7-7 / USD 30.74
You Will Learn Python 3! Zed Shaw has perfected the world’s best system for learning Python 3. Follow it and you will succeed—just like the millions of beginners Zed has taught to date! You bring t......一起来看看 《Learn Python 3 the Hard Way》 这本书的介绍吧!