0

当我运行 mvn compile 时,我从编译中得到一个错误列表,所有这些错误都说缺少我在 pom.xml 中作为依赖项的包。

Pom.xml

`<dependency>
        <groupId>com.fortysevendeg.android</groupId>
        <artifactId>swipelistview</artifactId>
        <version>1.0-SNAPSHOT</version>
        <type>apklib</type>
 </dependency>`

Error
error: package com.fortysevendeg.swipelistview does not exist

我真的很感激这方面的一些帮助。一段时间以来,我一直在努力解决这个问题。

4

1 回答 1

2

看起来 MVN 无法从您的存储库中提取您的包( com.fortysevendeg.swipelistview )。为了弄清楚,我会将包从代码存储库(即 SVN、GitHub)签出到您的工作空间。重新检查 pom.xml 的确切名称并安装 MVN。

链接:阅读

Downloading from a Remote Repository

Downloading in Maven is triggered by a project declaring a dependency that is not present in the local repository (or for a SNAPSHOT, when the remote repository contains one that is newer). 

默认情况下,Maven 将从中央存储库下载。

在 MVN 编译期间,它首先在您的本地工作区中查找,如果没有找到,那么它将从配置的存储库中提取它。

于 2013-09-03T21:35:57.443 回答