- 安装 Maven
下载 Maven http://mirrors.hust.edu.cn/apache/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip
下载好 Maven 后,需要简单安装下。将下载的文件解压到需要安装到的目录。 接下简单配置下环境变量:
1、新建环境变量 M2_HOME ,输入值为 Maven 的安装目录。
2、新建环境变量 M2 ,输入值为: %M2_HOME%\bin 。
3、将 M2 环境变量加入 Path 的最后,如: ;%M2%;。
环境变量就这么简单配置下就可以了。打开命令行窗口输入 mvn -version 。可以看到如下输出:
看到以上输出,您的 Maven 环境就已经搭建好了
- 这里你可以使用 OSChina 的 Maven 服务。
在 Maven 的安装目录下的 conf 文件下有个 settings.xml 文件,接下来我们需要对这个文件做简单的修改,
修改前您可以简单备份下该文件。 打开 settings.xml 文件,按下面内容修改。<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>nexus-osc</id>
<mirrorOf>*</mirrorOf>
<name>Nexus osc</name>
<url>http://maven.oschina.net/content/groups/public/</url>
</mirror>
</mirrors>更多详细配置请移步 http://maven.oschina.net/help.html 查看
- 在Eclipse中安装 Maven 插件
点击菜单 Help -> Install new software 进行插件安装
插件地址 http://download.eclipse.org/technology/m2e/releases
- 配置你安装的 Maven
点击菜单 窗口 -> 首选项 -> Maven -> Installations 的Add按钮 选到你本机安装 Maven 的路径
- 选择你的 Maven 的 setting.xml 配置文件
OK!! 配置完成
相关文章
- 08-29mmdetection安装记录(使用google colab安装)
- 08-29KVM简介,安装及常见使用详解
- 08-29spring boot项目使用maven引入依赖失败,pom.xml文件中project标签报错98
- 08-29安装eclipse scala插件
- 08-29VsCode安装使用教程和插件安装方法(转载)
- 08-29GDB的安装和使用
- 08-29Maven的安装步骤
- 08-29使用tengine DSO 来动态编译安装第三方模块(Lua
- 08-29DL框架之Keras之AutoKeras框架:AutoKeras框架的简介、特点、安装、使用方法详细攻略
- 08-29使用阿里云的maven仓库