C:\groupware\maven-2.0.4
C:\Documents and Settings\test\.m2\repository
E:\Program Files\Apache Software Foundation
修改流程
在apache路径下E:\Program Files\Apache Software Foundation\Apache2.2\htdocs\下建一个目录叫maven
然后修改C:\groupware\maven-2.0.4\conf下的settings.xml,找到localRepository项,修改路径为:
E:/Program Files/Apache Software Foundation/Apache2.2/htdocs/maven
先启动apache服务,使得http://localhost:81/maven/能被访问,前面已经做好了铺垫。
要使用自己建立的repository,只需修改pom.xml,在repository配置后加上:
<repository>
<id>companyName</id>
<url>http://127.0.0.1:81/maven</url>
</repository>
这样需要下载jar时,会先去本地指定点查看,没有下载过再到官网搜索