Maven 札记

1.将pom拷贝到Android Project 下就可以使用maven管理项目了

2.maven 3.1.× 有问题,使用 3.0.5 就能解决问题(这个是maven的bug,到本文发布时,并没有修改这个bug)

3.使用mvn dependency 能够解决依赖问题

详见:http://maven.apache.org/plugins/maven-dependency-plugin/usage.html 

dependency:resolve 下载所有的依赖

dependency:sources  下载依赖包的同时下载源码

MVN_HOME\conf\settings.xml 里面可以修改本地类库的位置(C盘快满的人有福音了)

 <!-- localRepository
   | The path to the local repository maven will use to store artifacts.
   |
   | Default: ~/.m2/repository-->
  <localRepository>E:/.m2/repository</localRepository>
还有很多其他的配置

你可能感兴趣的:(Maven 札记)