如何使用Maven框架在EclipseIDE上开发Android应用程序?

时间:2011-07-01 05:42:22

标签: android eclipse maven

我已经坚持这个问题3天了。我想使用Eclipse在Maven框架中开发一个Android应用程序。我不知道Maven框架。我正在使用Apache maven。我按照安装说明,显示版本等,但当我尝试设置回购路径时,我得到了这个

C:\Users\377759>cd mvn -Declipse.workspace=<C:\Users\377759\Desktop\Repo> eclipse:add-maven-repo
Access is denied.

如果给出没有尖括号的路径,这就是我得到的......

C:\Users\377759>mvn -Declipse.workspace=C:\Users\377759\Desktop\Repo eclipse:add-maven-repo
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'eclipse'.
[INFO] org.apache.maven.plugins: checking for updates from central
[WARNING] repository metadata for: 'org.apache.maven.plugins' could not be retrieved from repository: central due to an error: Error transferring file: repo1.maven.org
[INFO] Repository 'central' will be blacklisted
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] The plugin 'org.apache.maven.plugins:maven-eclipse-plugin' does not exist or no valid version could be found
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 14 seconds
[INFO] Finished at: Fri Jul 01 05:38:44 GMT 2011
[INFO] Final Memory: 1M/3M
[INFO] ------------------------------------------------------------------------
C:\Users\377759>

这是为什么?我该怎么办??其实我需要了解基础知识,比如如何在maven中打包我的文件,不同文件的功能等。任何人都可以帮助你吗? 提前谢谢你!

1 个答案:

答案 0 :(得分:2)

试试这些:

要访问本地存储库,您需要该文件夹的路径。请记住,Subversion期望file:///C:/SVNRepository/

形式的所有存储库路径

另外,在您的Maven settings.xml中,可以在 Maven_Installation_Folder \ conf 中找到,请查看以下内容:

  • 代理,如果需要,应指定连接到Internet。
  • 如果您有本地存储库,请在此处进行定义。 (你可以在那里看到样本定义)

对于Maven基本用法,请阅读 Apache Maven网站

中的文档