Android Ignition POM错误

时间:2012-06-27 09:45:40

标签: android eclipse maven pom.xml droid-fu

我是maven和点火的新手。我正在尝试将ignition-core设置为链接到新项目的库项目。然而,点火芯pom有这个错误...

项目构建错误:不可解析的父POM:找不到工件com.github.ignition:ignition:pom:0.3-SNAPSHOT和'parent.relativePath'指向错误的本地POM

我该如何解决这个问题?提前谢谢。

1 个答案:

答案 0 :(得分:1)

Ignition是一个multi-module project,由一组具有模块间依赖关系的项目组成:

ignition/
  ignition-core/
    ignition-core-lib/
    ignition-core-samples/
    ignition-core-tests/
    pom.xml
  ignition-location/
    ignition-location-lib/
    ignition-location-samples/
    ignition-location-tests/
    pom.xml
  ignition-support/
    ignition-support-lib/
    ignition-support-samples/
    pom.xml
  pom.xml

假设您使用Eclipse并安装了m2e和m2e-android插件。您需要使用File -> Import ... -> Maven -> Existing Maven Projects将所有项目作为一个组导入到Eclipse中,然后选择ignition /作为根项目文件夹。

如果不修改pom.xml(打破多模块项目的结构),就无法在Eclipse中独立导入和使用ignition-core /。