欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Maven项目创建流程

程序员文章站 2022-06-12 17:58:38
...


1/ 下载maven 镜像,百度搜索即可:http://maven.apache.org/download.cgi
2/ 在idea 的 file -> settings -> Build -> Build Tools -> Maven 
      -> Maven home directory 添上自己maven 镜像的位置。 点ok3/ 打开maven 解压的位置,找到conf 文件下的 settings.xml  ,打开文件,在160行左右的位置,
   找到 <mirrors> </mirrors> 标签位置 ,加入 阿里云镜像。代码如下:
 

<!--添加阿里云镜像 -->
<mirror>            
    <id>nexus-aliyun</id>            
    <mirrorOf>central</mirrorOf>           
    <name>Nexus aliyun</name>            
    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>

  
4/ 创建 maven 项目:
   1) file -> Maven (勾选Create from arcetype , 选择 maven-archetype-webapp)不勾不能选择

       -> 填写GroupId(一般是包名 如:com .ck) 和 ArtifactId(一般是项目名 如:testMaven)

       ->  Maven home directory 添上自己maven 镜像的位置 -> Finish -> 稍等一下安装完成后项目即建立完毕