zoukankan      html  css  js  c++  java
  • Maven 3.6.1 下载及安装配置

    Step1:Download

    You can download Maven3.6.1 from maven.apche.org , or from here.

    Step2:Unzip and add to "Path"

    Unzip the amven zip file and then add the path of 'bin' directory to System variable 'Path'

    Step 3: Verify

    open a cmd window and type in "mvn -v",If you see the output as below, it indicates maven has been installed properly.

    C:Usersheyang>mvn -v
    Apache Maven 3.6.1 (d66c9c0b3152b2e69ee9bac180bb8fcc8e6af555; 2019-04-05T03:00:29+08:00)
    Maven home: C:maven-3.6.1in..
    Java version: 1.8.0_212, vendor: Oracle Corporation, runtime: c:java8jre
    Default locale: zh_CN, platform encoding: GBK
    OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"

    Step 4:add mirror

    open the file C:maven-3.6.1confsettings.xml, add the follow paragraph into the node 'mirrors'

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

     Step5:config in Eclipse

    Open eclipse's preference menu,click maven tab and add the two configuration as below:

    --End--

    2019年8月24日08点42分

  • 相关阅读:
    移动端开发touchstart,touchmove,touchend事件详解和项目
    我对JVM的理解
    快速排序
    归并排序(Merge sort)
    希尔排序
    插入排序
    选择排序
    冒泡排序(Bubble Sort)
    java设计模式之单例模式
    Java中反射机制的理解
  • 原文地址:https://www.cnblogs.com/heyang78/p/11403480.html
Copyright © 2011-2022 走看看