使用
接下来将简单介绍如何在您的项目中使用 Maven,以及使用 OSChina 提供的 Maven 服务。
1.安装 Maven
如果需要使用到 Maven ,必须首先安装 Maven , Maven 的下载地址在 Apache Maven 中有,您也可以点击这里下载 zip ,tar.gz。
下载好 Maven 后,需要简单安装下。将下载的 zip 或者 tar.gz 包解压到需要安装到的目录。 接下简单配置下环境变量:
1、新建环境变量 M2_HOME ,输入值为 Maven 的安装目录。
2、新建环境变量 M2 ,输入值为: %M2_HOME%\bin 。
3、将 M2 环境变量加入 Path 的最后,如: ;%M2% ;。
环境变量就这么简单配置下就可以了。打开命令行窗口输入 mvn -version 。可以看到如下输出:
看到以上输出,您的 Maven 环境就已经搭建好了。
2.修改 settings.xml
在 Maven 中使用 OSChina 的 Maven 服务还需要简单配置一下 Maven,在 Maven 的安装目录下的 conf 文件下有个 settings.xml 文件,接下来我们需要对这个文件做简单的修改,修改前您可以简单备份下该文件。 打开 settings.xml 文件,按下面内容修改。或者点击 settings.xml 下载
02 |
<!-- mirror | Specifies a repository mirror site to use instead of a given |
03 |
repository. The repository that | this mirror serves has an ID that matches |
04 |
the mirrorOf element of this mirror. IDs are used | for inheritance and direct |
05 |
lookup purposes, and must be unique across the set of mirrors. | --> |
08 |
< mirrorOf >*</ mirrorOf > |
09 |
< name >Nexus osc</ name > |
10 |
< url >http://maven.oschina.net/content/groups/public/</ url > |
补充: 如果还需要osc的thirdparty仓库或多个仓库,需要如下修改:详情
02 |
<!-- mirror | Specifies a repository mirror site to use instead of a given |
03 |
repository. The repository that | this mirror serves has an ID that matches |
04 |
the mirrorOf element of this mirror. IDs are used | for inheritance and direct |
05 |
lookup purposes, and must be unique across the set of mirrors. | --> |
08 |
< mirrorOf >central</ mirrorOf > |
09 |
< name >Nexus osc</ name > |
10 |
< url >http://maven.oschina.net/content/groups/public/</ url > |
13 |
< id >nexus-osc-thirdparty</ id > |
14 |
< mirrorOf >thirdparty</ mirrorOf > |
15 |
< name >Nexus osc thirdparty</ name > |
16 |
< url >http://maven.oschina.net/content/repositories/thirdparty/</ url > |
这里是配置 Maven 的 mirror 地址指向OSChina 的 Maven 镜像地址。 在执行 Maven 命令的时候, Maven 还需要安装一些插件包,这些插件包的下载地址也让其指向 OSChina 的 Maven 地址。修改如下内容。
11 |
< name >local private nexus</ name > |
12 |
< url >http://maven.oschina.net/content/groups/public/</ url > |
14 |
< enabled >true</ enabled > |
17 |
< enabled >false</ enabled > |
24 |
< name >local private nexus</ name > |
25 |
< url >http://maven.oschina.net/content/groups/public/</ url > |
27 |
< enabled >true</ enabled > |
30 |
< enabled >false</ enabled > |
如果您需要修改 Maven 的默认文件保存路径,需要在 settings.xml 文件中修改如下地方。
1 |
< localRepository >F:/Maven/repo/m2/</ localRepository > |
按照如上修改 settings.xml 之后,您就可以在自己的 Maven 中使用 OSChina 为您提供的 Maven 服务了。