maven仓库改为阿里maven仓库 怎样将默认的maven仓库改为阿里的maven仓库

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

maven仓库改为阿里maven仓库 怎样将默认的maven仓库改为阿里的maven仓库

zchtom   2021-01-28 我要评论

在eclipse中默认的maven,它加载的是国外的镜像,那样速度会比较慢,如果使用国内镜像,比如阿里的中央仓库;速度会快很多。

那如何修改maven仓库呢?(网上有很多如何修改maven仓库的方法,这边我是以我操作的方法,和参考网上的修改方法)

Step-1:去官网https://maven.apache.org/download.cgi下载一个apache-maven工具

Step-2:下载完成之后,在apache-maven-3.5.0/conf文件夹下新建一个settings.xml,并在apache-maven-3.5.0文件夹下创建一个repos文件夹,用于下面在eclipse中将其设置为仓库的路径

    而settings.xml的内容可以在网上找一个,settings.xml如下

?xml version="1.0" encoding="UTF-8"?>

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

  <localRepository>E:\apache-maven-3\apache-maven-3.5.0\repos</localRepository>

<pluginGroups>

</pluginGroups>

<proxies>

</proxies>

<servers>

</servers>

<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>alimaven</id>

    <mirrorOf>*</mirrorOf>

    <name>aliyun maven</name>

    <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>

  </mirror>

</mirrors>

<profiles>

</profiles>

</settings>

其中核心的部分为:

<mirror>

    <id>alimaven</id>

    <mirrorOf>*</mirrorOf>

    <name>aliyun maven</name>

    <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>

  </mirror>

Step-3:对eclipse进行修改

    在window—》preferences

完成之后:切换到maven的窗口

然后重新建立索引

这个过程有点长:

完成后,新建一个maven项目(我这边已经建好了),打开pom.xml文件,进行查询依赖jar包

这样说明就OK了

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们