其他分享
首页 > 其他分享> > Maven笔记

Maven笔记

作者:互联网

1.maven的settings.xml

本地仓库路径/home/calcifer/.m2/repository

阿里云镜像

    <mirror>       
<id>mirrorId</id>      
 <mirrorOf>repositoryId</mirrorOf>     
  <name>Human Readable Name for this Mirror.</name>       <url>http://my.repository.com/repo/path</url>    
 </mirror> 

2.安装maven项目到本地

mvn install -Dmaven.test.skip=true

标签:maven,repository,skip,Readable,笔记,Maven,本地,path
来源: https://blog.csdn.net/weixin_42818402/article/details/100577485