可参见:http://wenku.baidu.com/view/d451dbb11a37f111f1855b43.html
maven:
何为maven: 是一个apache 开源的一个跨平台的管理项目工具,maven 翻译为“知识的积累”,“行家”,“专家“。maven 专注于java 平台的项目的构建,依赖管理,项目信息管理等。README.txt
三:配置Maven 的环境变量,MAVEN_HOME=D:\maven\apache-maven-3.1.0-bin\apache-maven-3.1.0首先查看一下,自己电脑所处的环境中是否可以上外网,ping repol.maven.org,如果不能联上,我们需要设置有效的代理,我们把conf/目录下的settings.xml 复制到.m2\repository\下,修改settings.xml 格式如下。 配置代理时,先检查一下代理服务是否可用,telnet ip port
.m2\repository\ 的修改说明在下边。
这样就把maven 与eclipse 集成 成功了。重启eclipse。
maven安装包和插件下载地址:http://download.csdn.net/detail/liuc0317/5979227
第二步:
window --> preferences--> Maven
Installations 选择自己下载的版本
Default: ${user.home}/.m2/repository 需要 把在 默认的地址 换一下,同时要把 conf 文件夹下的settings.xml 复制一份,表示只修改当前用户的
在XP系统中默认的 容器地址是 C:\Documents and Settings\Administrator\.m2\repository
修改settings.xml.
<localRepository>D:/maven/.m2/repository</localRepository>
打开 文件open file .修改 下载中央仓库的地址:
<mirrors> <!-- mirror | Specifies a repository mirror site to use instead of a given repository. The repository that | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used | for inheritance and direct lookup purposes, and must be unique across the set of mirrors. |http://mirrors.ibiblio.org/maven2/ --> <mirror> <id>ibiblio</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://repo1.maven.org/maven2</url> </mirror> </mirrors>
这样 配置上就配置完了。