由于重命名包,aether-demo无法编译

时间:2013-04-19 09:40:22

标签: maven aether

我需要编译并执行“aether-demo”。

我没有找到“aether-demo”的版本,所以我使用的快照如下:

git clone git://git.eclipse.org/gitroot/aether/aether-core.git
cd aether-core
mvn clean install

git clone git://git.eclipse.org/gitroot/aether/aether-demo.git
cd aether-demo/
cd aether-demo-snippets/
mvn clean install

但它失败了:

[ERROR] /private/tmp/aether-demo/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/manual/ManualRepositorySystemFactory.java:[33,40] cannot access org.sonatype.aether.impl.internal.DefaultServiceLocator
[ERROR] class file for org.sonatype.aether.impl.internal.DefaultServiceLocator not found
[ERROR] DefaultServiceLocator locator = new DefaultServiceLocator();

和其他错误。

它告诉它找不到类"org.sonatype.aether.impl.internal.DefaultServiceLocator"

但是,ManualRepositorySystemFactory.java改为导入:

  import org.apache.maven.repository.internal.DefaultServiceLocator;

为什么会这样? ManualRepositorySystemFactory.java不从org.sonatype.aether.impl.internal导入该类。为什么mvn clean install尝试从这个包导入它?

此外,“aether-core”项目在另一个包中有该文件:org/eclipse/aether/impl/DefaultServiceLocator.java

(根据git日志,它一直在这里)

那么,发生了什么? 是否在某处重新映射了包?

如何编译和执行“aether-demo”?

1 个答案:

答案 0 :(得分:0)

修正: https://bugs.eclipse.org/bugs/show_bug.cgi?id=406212

  

Benjamin Bentmann 2013-04-22 07:45:03 EDT

     

成功运行示例所需的依赖项刚刚发布了   消耗它们的相应CQ仍在处理中。直到我们   有这些批准,你可能想看一看   https://github.com/bentmann/aether-demo提供预览   更新。