码迷,mamicode.com
首页 > Windows程序 > 详细

Windows中Maven整合到Eclipse,修改成国内镜像

时间:2017-10-21 19:12:11      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:配置文件   nload   bin   选择   oca   window   仓库   png   XML   

  Java项目中,当只使用几个jar包时,很好管理。当使用了好几十个时,jar包的版本、相互之间的依赖等,管理起来就不是很方便。

Maven最直观的就是jar包的依赖管理,当然他的使用不仅仅是这些,也不仅仅是使用在Java上。下面是在Eclipse里面整合Maven,

自定义本地仓库位置,镜像等。

  1、下载Maven,下载地址:http://maven.apache.org/download.cgi

技术分享

2、下载后,解压即可

技术分享

3、复制Maven的bin路径,添加到环境变量

技术分享

4、打开高级系统设置
技术分享

5、添加路径到环境变量的“Path”,依次点击”确定“以保存

技术分享

6、验证Maven配置,按”Win+r“,打开命令行提示

技术分享

7、输入“mvn -v”,验证

技术分享

8、编辑Maven的配置文件,“conf”下的“settings.xml”

技术分享

9、配置本地仓库位置

技术分享

10、设置远程仓库的镜像(网速的问题),使用阿里云镜像

10.1、代码1

    <mirror>
      <id>nexus-aliyun</id>
      <mirrorOf>central</mirrorOf>
      <name>Nexus aliyun</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    </mirror>
    <mirror>
      <id>nexus-aliyun-thirdparty</id>
      <mirrorOf>thirdparty</mirrorOf>
      <name>Nexus aliyun thirdparty</name>
      <url>http://maven.aliyun.com/nexus/content/repositories/thirdparty/</url>
    </mirror>

技术分享

10.2、代码2

    <profile>
      <id>jdk-1.4</id>
      <activation>
        <jdk>1.4</jdk>
      </activation>
      <repositories>
        <repository>
          <id>nexus</id>
          <name>local private nexus</name>
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
              <id>nexus</id>
              <name>local private nexus</name>
              <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
              <releases>
                <enabled>true</enabled>
              </releases>
              <snapshots>
                <enabled>false</enabled>
              </snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>

技术分享

11、打开Eclipse,设置“Preferences”

技术分享

11、设置Maven选项

11.1、选择“Maven”的“User Settings”,配置在全局设置

技术分享

11.2、应用保存后,Eclipse会初始化一下,很快的。这样就把Maven整合到Eclipse了。用国内镜像下载,还是很快的。

 

Windows中Maven整合到Eclipse,修改成国内镜像

标签:配置文件   nload   bin   选择   oca   window   仓库   png   XML   

原文地址:http://www.cnblogs.com/sdf-txt/p/7705285.html

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