码迷,mamicode.com
首页 > 其他好文 > 详细

maven 简易入门笔记

时间:2016-03-30 23:47:39      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

教程:http://www.yiibai.com/maven/

    http://maven.apache.org/

第一步:下载安装maven。

          配置环境变量。

第二步: 设置mirror 中央存储仓库的地址

技术分享
  <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.
     |  -->
    <mirror>  
        <id>CN</id>  
        <name>OSChina Central</name>
        <url>http://maven.oschina.net/content/groups/public/</url>  
        <mirrorOf>central</mirrorOf>  
    </mirror>  
    <mirror>  
        <id>ui</id>  
        <mirrorOf>central</mirrorOf>  
        <name>Human Readable Name for this Mirror.</name>  
        <url>http://uk.maven.org/maven2/</url>  
    </mirror>
    <mirror>
        <id>jboss-public-repository-group</id>
        <mirrorOf>central</mirrorOf>
        <name>JBoss Public Repository Group</name>
        <url>http://repository.jboss.org/nexus/content/groups/public</url>
    </mirror> 
    <mirror>
        <id>ibiblio</id>
        <mirrorOf>central</mirrorOf>
        <name>Human Readable Name for this Mirror.</name>
        <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
    </mirror>
</mirrors>
mirror 配置,速度快

 

第三步:用命令行或者在eclipse中使用maven创建项目。

maven 简易入门笔记

标签:

原文地址:http://www.cnblogs.com/netact/p/5339287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!