自定義maven的本地倉庫以及新增映象倉庫
阿新 • • 發佈:2018-12-27
1、自定義maven的本地倉庫位置
在maven的conf資料夾下的settings.xml中的<settings>子節點新增
<localRepository>D:\repository</localRepository>
2、Maven中的座標庫和倉庫
座標
構件
倉庫
本地倉庫和遠端倉庫
映象倉庫
<mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>nexus aliyun.</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror>
maven-model-builder-3.3.9.jar\org\apache\maven\model\pom-4.0.0.xmlMaven提供的超級pom,所有的pom都會繼承該pom
<repositories> <repository> <id>central</id> <name>Central Repository</name> <url>https://repo.maven.apache.org/maven2</url> <layout>default</layout> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories>