0

Maven Android SDK Deployer 运行命令“mvn install”报错:

找不到属性文件

请告诉我为什么?如何修复错误?例如错误:

无法在项目 google-apis-4 上执行目标 org.codehaus.mojo:properties-maven-plugin:1.0-alpha-2:read-project-properties(默认):
找不到属性文件:D:\ICSEclipse\android- sdk-windows\add-ons\addon-google_apis-google-4 \source.properties

4

2 回答 2

1

Your issue is addressed right in the install instructions: https://github.com/mosabua/maven-android-sdk-deployer#known-problems

In short, if you have and ADK that has been downloaded a long time ago and then updated you need to delete it completely and redownload it. The issue is a number of folder name changes between updates and the fact that de deployer only works with the newest naming scheme.

于 2012-09-15T21:51:53.380 回答
0

接受的答案对我没有帮助,因为我刚刚下载了最新的 ADK 和最新的 sdk-deployer 并且仍然出现错误,没有任何旧版本。

当我解决这些问题时,我让它工作:

  1. 第一个问题是我在安装 ADK 后没有安装所有平台和附加组件。这需要使用 SDK 管理器来完成。
  2. 在那之后,其中两个模块失败了,所以他们必须像这个 pull request中解释的那样被注释掉。
  3. 然后它因 javadoc 错误而失败。这是由于 JDK 8,显然还不支持,为此我打开了这个问题。使用 JDK 7 它可以工作。
于 2014-02-16T14:48:08.100 回答