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

maven配置

时间:2021-01-29 11:49:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:改变   als   term   base   display   style   roc   off   下载   

maven 配置 :

  • 1.系统变量配置 maven_home: maven地址

  • 2.系统变量path变量%MAVEN_HOME%\bin

  • 3.设置Maven使用镜像及本地仓库

        对Maven的设置都通过修改其自带的setting.xml进行,打开Maven所在的文件夹->config文件夹->使用编辑器打开setting.xml。由于Maven自身的镜像国内使用速度慢的离谱,所          以首先我们设置其下载镜像为国内的镜像,在setting.xml第159行左右的位置插入如下代码:

          <mirror>
                   <id>alimaven</id>
                  <name>aliyun maven</name>
                  <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
                  <mirrorOf>central</mirrorOf>
                  </mirror>

  • 4.在all settings 中找到Maven,修改安装目录、设置、仓库的所在位置(全局设置)?技术图片技术图片??
  • 5.将jar包导入本地仓库的命令:如:导入selenium-server-standalone-3.141.59.jar的jar包

mvn install:install-file -Dfile=D:\selenium-server-standalone-3.141.59.jar -DgroupId=selenium-hou -DartifactId=selenium-server-standalone -Dversion=3.141.59 -Dpackaging=jar

导入jar包前可以看看https://mvnrepository.com/有无此jar包,有可以直接引用

 

maven配置

标签:改变   als   term   base   display   style   roc   off   下载   

原文地址:https://www.cnblogs.com/meijuan123/p/14340185.html

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