maven 简易入门笔记
Posted HenryWang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 简易入门笔记相关的知识,希望对你有一定的参考价值。
教程: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>
第三步:用命令行或者在eclipse中使用maven创建项目。
以上是关于maven 简易入门笔记的主要内容,如果未能解决你的问题,请参考以下文章