maven更新远程仓库速度太慢解决方法

1、maven在更新下载jar包的时候,因为jar包默认是从国外服务器上下载的,所以速度特别慢

2、通过设置镜像的方法加快jar包下载

3、在maven安装目录下,/config/settings.xml中配置镜像

4、在配置文件中147行,mirrors中添加镜像

  id,mirrorOf,name中的参数可以随便填写,主要是url地址,url地址可以选择国内一些比较快速的maven库地址

5、添加好镜像后,更新下载jar包就可以很快了

时间: 2024-11-16 00:37:21

maven更新远程仓库速度太慢解决方法的相关文章

git 本地与远程仓库出现代码冲突解决方法

提交过程中报错: [[email protected] Selesystem]$ git push -u origin masterUsername for 'https://github.com': sdfasnamePassword for 'https://[email protected]': To https://github.com/nighttidesy/-Selesystem.git ! [rejected] master -> master (fetch first)error

MYSQL远程连接速度慢的解决方法

在局域网内连接其他机器的MYSQL,发现速度慢的很,不知道什么原因,总有几秒的延迟. 后来在网上发现解决方法,my.ini里面添加 [mysqld]skip-name-resolveskip-grant-tables 这样速度就快了! skip-name-resolve 选项就能禁用DNS解析,连接速度会快很多.不过,这样的话就不能在MySQL的授权表中使用主机名了而只能用ip格式. 若使用–skip-grant-tables系统将对任何用户的访问不做任何访问控制,但可以用 mysqladmin

maven 学习---Maven添加远程仓库

默认情况下,Maven从Maven中央仓库下载所有依赖关系.但是,有些库丢失在中央存储库,只有在Java.net或JBoss的储存库远程仓库中能找到. 1. Java.net资源库 添加Java.net远程仓库的详细信息在“pom.xml”文件. pom.xml <project ...> <repositories> <repository> <id>java.net</id> <url>https://maven.java.net

git更新远程仓库地址

最近公司代码仓库由github转gitlab,需要更新一些仓库的远程地址: 一.查看远程仓库地址 git remote -v 二.更新远程仓库地址 git remote set-url origin https://git.xxxxxxxxx.git 原文地址:https://www.cnblogs.com/weihengblog/p/12242977.html

maven的pom报plugins却是的解决方法(转)

maven的pom报plugins却是的解决方法. 引用 Failure to transfer org.apache.maven.plugins:maven-surefire-plugin:pom:2.7.1 from http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central h

eclipse插件Maven添加依赖查询无结果的解决方法(Select Dependency doesn&#39;t work)

在eclipse中用过maven的可能都遇到过这种情况,我以前一直在search.maven里面搜索,然后添加pom信息. 今天在网上搜索时,找到了一个解决方法,在这里分享一下. 第一步,在preferences里面选择maven,选中"Download repository index updates on startup" 第二步,打开Maven仓库 第三步,在全局仓库上右键选择"Full Index Enabled" 选择之后,maven会下载一个近百兆的索引

maven的pom报plugins缺失的解决方法

maven的pom报plugins却是的解决方法. 引用 Failure to transfer org.apache.maven.plugins:maven-surefire-plugin:pom:2.7.1 from http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central h

未能解析此远程名称:&#39;nuget.org&#39; 的解决方法

今天用Nuget下一个程序包时,发现Nuget挂了: 未能解析此远程名称:'nuget.org' . 浏览器打开  http://nuget.org  失败. 使用cmd命令 输入nslookup nuget.org 解析失败 使用Google的DNS 输入 nslookup nuget.org 8.8.8.8 解析成功 如: 服务器: google-public-dns-a.google.com Address: 8.8.8.8 非权威应答: 名称: nuget.org Address: 15

PHP 获取远程文件大小的3种解决方法

转 http://www.3lian.com/edu/2013/07-12/80472.html 以下是对PHP中获取远程文件大小的3种解决方法进行了详细的介绍,需要的朋友参考下 1.使用file_get_contents() 复制代码 代码如下: <?php $file = file_get_contents($url); echo strlen($file); ?> 2. 使用get_headers() 复制代码 代码如下: <?php $header_array = get_hea