使用JAVA工程管理越来越多的jar包,担心导错了,多导了,漏导了怎么办?
换一个IDE项目后项目会不会出一堆BUG,看的头皮发麻?
自己写的代码放在别人的机器上运行会不会出问题?
Maven的强大毋庸置疑,当使用Maven后以上这些都不是问题,但是配置maven是一件耐心的事情,基本步骤总结如下:
一、下载
http://maven.apache.org/download.cgi
也可以直接在eclipse工具中下载,点击eclipse菜单栏Help->Eclipse Marketplace搜索关键字maven到插件Maven Integration for Eclipse 并点击安装即可
架构Maven工作环境(配置环境变量)
新建:MAVEN_HOME
路径(例如):D:\360Downloads\tools\marven3.5\apache-maven-3.5.0
添加到path配置文件中:;%MAVEN_HOME%\bin;
二、配置好后验证
输入mvn -version
成功后会有如以下提示:
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:\Users\Administrator>mvn -version Apache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-04T03:39:0 6+08:00) Maven home: D:\360Downloads\tools\marven3.5\apache-maven-3.5.0-bin\apache-maven- 3.5.0\bin\.. Java version: 1.8.0_121, vendor: Oracle Corporation Java home: D:\Program Files\Java\jdk1.8.0_121\jre Default locale: zh_CN, platform encoding: GBK OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows"
三、修改默认下载地址,默认下载地址在C盘中如下:
C:\Users\Administrator\.m2
建议换一个地址,防止系统变慢,重装系统也不会影响。
如:D:\eee\1701javaee_2\maveninport_aliyun\.m2
四、将安装路径下的apache-maven-3.5.0\conf\settings.xml文件复制一份到新地址的.m2目录下面(与repository在同一目录)。
五、打开eclipse将Maven工程添加到eclipse工具中。
window->preferences->maven->installations->add->maven安装路径。
六、打开settings.xml,修改如下2个地方的内容:
1、此处为存放下载依赖存放地方,在文件第53行:
原始文件:
<!-- localRepository | The path to the local repository maven will use to store artifacts. | | Default: ${user.home}/.m2/repository <localRepository>/path/to/local/repo</localRepository> -->
修改后的文件:
<!-- localRepository | The path to the local repository maven will use to store artifacts. | | Default: ${user.home}/.m2/repository <localRepository>/path/to/local/repo</localRepository> --> <localRepository>D:\eee\1701javaee_2\maveninport_aliyun\.m2\repository</localRepository>
2、此处为修改为从阿里云服务器上下载依赖,强烈建议更换,下载速度会快很多,在文件第160行
原始文件:
<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>mirrorId</id> <mirrorOf>repositoryId</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://my.repository.com/repo/path</url> </mirror> --> </mirrors>
修改后的文件:
<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>mirrorId</id> <mirrorOf>repositoryId</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://my.repository.com/repo/path</url> </mirror> -->
<!-- 阿里云镜像 下载配置 --> <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/html" target="_blank">public</url> </mirror> </mirrors>
完成后重启eclipse.
以上这篇浅谈Maven的安装及修改为阿里云下载依赖就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持小牛知识库。
本文向大家介绍在阿里云Centos下如何安装Nginx,包括了在阿里云Centos下如何安装Nginx的使用技巧和注意事项,需要的朋友参考一下 Nginx("engine x")是一款轻量级的HTTP和反向代理服务器。相比于Apache、lighttpd等,它具有占有内存少、并发能力强、稳定性高等优势。它最常见的用途就是提供反向代理服务。 在Linux下我们需要下载Nginx的源代码包并且手动编译
本文向大家介绍阿里云Centos7安装LNMP+wordpress,包括了阿里云Centos7安装LNMP+wordpress的使用技巧和注意事项,需要的朋友参考一下 1. 安装Nginx 测试:http://114.215.172.90/ 114.215.172.90为外网ip地址 2. 安装Mysql(not MariaDB) 3. 安装PHP 修改Nginx的配置文件:在 /etc/ng
本文向大家介绍阿里云Centos7下安装Redis及tomcat设置自启动的方法,包括了阿里云Centos7下安装Redis及tomcat设置自启动的方法的使用技巧和注意事项,需要的朋友参考一下 Redis安装配置 安装Redis(root账户下 启动redis 1.直接启动 2.加载配置启动 3.通过初始化脚本启动Redis (1)配置初始化脚本,将源代码目录里util文件中的redis_ini
本文向大家介绍阿里云ECS centos6.8下安装配置MySql5.7的教程,包括了阿里云ECS centos6.8下安装配置MySql5.7的教程的使用技巧和注意事项,需要的朋友参考一下 阿里云默认yum命令下的MySQL是5.17****,安装mysql5.7之前先卸载以前的版本,包括清除以前的数据库——查看/var/lib/mysql下,如果有历史文件备份后清除。 1、从https://d
本文向大家介绍阿里云CentOS7安装Mongodb教程,包括了阿里云CentOS7安装Mongodb教程的使用技巧和注意事项,需要的朋友参考一下 一、概述 近日要在新的CentOS系统上安装MongoDB,某度结果后直接从Mongo官网直接获得3.2版本的下载链接,结果在下载时发觉速度慢的可怜。迫于无奈,只能找国内的镜像下载。切换国内的安装源后,使用yum的方式安装后发现,安装的MongoD
安装 安装该软件:yum install -y yum-plugin-downloadonly 以下载 openssh-server 为例: yum install -y openssh-server --downloadonly --downloaddir=/opt/ssh 在 /opt/ssh 目录下有如下内容: -rw-r--r--. 1 root root 280524 Aug 13 2