“以下工件无法解决”:Maven / Android / Eclipse

时间:2014-06-02 09:45:04

标签: java android eclipse maven

我正在尝试使用androidEclipse中运行Maven个应用程序。 遗憾的是,有些dependencies停止了运行(无法找到或解决)。 我已经检查过我的存储库中有依赖项。 任何建议都是受欢迎的。 感谢您的时间和考虑。

Pom.xml:

<dependency>
        <groupId>android</groupId>
        <artifactId>android</artifactId>
        <version>4.4.2_r2</version>
        <scope>provided</scope> 
    </dependency>
    <dependency>
        <groupId>android.support</groupId>
        <artifactId>compatibility-v4</artifactId>
        <version>19.0.1</version>
    </dependency>

控制台的错误消息:

The following artifacts could not be resolved: android:android:jar:4.4.2_r2, android.support:compatibility-v4:jar:19.0.1: Failure to find android:android:jar:4.4.2_r2 in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced

2 个答案:

答案 0 :(得分:1)

您的存储库中不存在android:android:jar:4.4.2_r2。检查它是否存在。

答案 1 :(得分:1)

由于法律问题,Google不允许在Maven Central存储库上安装Android JAR文件。您需要在本地存储库中手动安装这些依赖项。

为此,您需要克隆并执行Maven Android SDK Deployer