Maven

作者: 叫我小码哥 | 来源:发表于2019-07-06 16:23 被阅读0次

    首先我们需要到官网下载maven,http://maven.apache.org/download.cgi
    然后将下载的maven压缩包进行解压。
    接着配置环境变量:
    1.在系统变量中新建MAVEN_HOME变量值为maven解压的位置D:\apache-maven-3.5.0。
    2.在系统变量中path中添加变量值 ;%MAVEN_HOME%\bin。
    mvn -v查看maven版本信息。

    image.png
    mvn -compile 编译项目
    mvn -test 测试
    mvn -clean删除target文件
    mvn -install将jar包安装到本地仓库

    找到远程父仓库。
    在lib目录中找到maven-model-builder.jar包打开jar包。


    image.png

    找到pom.xml文件,打开该文件。


    image.png
    <repository>
          <id>central</id>
          <name>Central Repository</name>
          <url>https://repo.maven.apache.org/maven2</url>
          <layout>default</layout>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
    

    在repository中
    id 表示 唯一表示。
    name 名字。
    url 中央仓库链接的地址,表示父仓库的地址。
    <layout>default</layout>表示默认配置。

    修改仓库位置

    <!-- 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:/myRepo</localRepository>
    

    maven具有传递依赖,短路径依赖优先的特征。

    相关文章

      网友评论

          本文标题:Maven

          本文链接:https://www.haomeiwen.com/subject/clguhctx.html