ADT安装maven插件

ADT安装maven插件

从官网上下载了ADT。因为习惯使用maven管理依赖和查看下载代码,所以期望在ADT中增加插件。

方法一

在eclipse中,Help --> Install New Software,然后输入 HTTP 地址来安装。或者进入 eclipse market

http 地址:http://m2eclipse.sonatype.org/sites/m2e

我如此操作,报错

方法二

http://115.com/file/dpk80gj0#eclipse-maven3-plugin.7z 
or 
http://pan.baidu.com/s/1o6G47Aa

下载eclipse-maven3-plugin.7z 解压缩,放在Eclipse\dropins下,重启。

成功

Android整合Maven

Android整合Maven笔记(一)——在Android项目上启用maven: 
http://blog.csdn.net/jason20ming/article/details/7031734

使用Maven构建Android项目: 
http://www.ikoding.com/build-android-project-with-maven/

直接用maven生成代码

mvn archetype:generate \

-DarchetypeArtifactId=android-quickstart \ 

-DarchetypeGroupId=de.akquinet.android.archetypes \ 

-DarchetypeVersion=1.0.5 \ 

-DgroupId=your.company \ 

-DartifactId=my-android-application 

你可能感兴趣的:(eclipse,maven,android,管理,插件)