2016-12-28
周海汉 /文 2016.12.28
maven仓库是java编程很重要的依赖。国内访问国外的maven仓库都是龟速,还经常失败。 以前oschina提供国内maven镜像,但因为无利可图,带宽耗费巨大,oschina关闭了该maven仓库。 这让java开发者痛苦了很长一段时间。
幸好阿里云又建立了新的镜像。以阿里的实力,应该不至于搞两年又关了吧。 用上阿里镜像后,maven编译变得飞快。感谢阿里。
maven配置
可以在maven安装目录的conf目录,修改settings.xml
找到原来的mirrors,修改成如下的镜像配置:
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
gradle 配置
在build.gradle中添加
allprojects {
repositories {
mavenLocal()
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
}
}
系统配置:
将init.gradle放到 USER_HOME/.gradle/目录下`
或者将.gradle结尾的文件名放到 USER_HOME/.gradle/init.d/目录下。`
可以用该脚本替换gradle缺省的mavenCentral()和jcenter()配置:
allprojects {
repositories {
mavenLocal()
def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public/'
all { ArtifactRepository repo ->
def url = repo.url.toString()
if ((repo instanceof MavenArtifactRepository) && (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com'))) {
project.logger.lifecycle 'Repository ${repo.url} replaced by $REPOSITORY_URL .'
remove repo
}
}
maven {
url REPOSITORY_URL
}
}
}
参考
https://docs.gradle.org/current/userguide/init_scripts.html
如非注明转载, 均为原创. 本站遵循知识共享CC协议,转载请注明来源
FEATURED TAGS
css
vc6
http
automake
linux
make
makefile
voip
乱码
awk
flash
vista
vi
vim
javascript
pietty
putty
ssh
posix
subversion
svn
windows
删除
编译
多线程
wxwidgets
ie
ubuntu
开源
c
python
bash
备份
性能
scp
汉字
log
ruby
中文
bug
msn
nginx
php
shell
wordpress
mqueue
android
eclipse
java
mac
ios
html5
js
mysql
protobuf
apache
hadoop
install
iocp
twisted
centos
mapreduce
hbase
thrift
tutorial
hive
erlang
lucene
hdfs
sqoop
utf8
filter
草原
yarn
ganglia
恢复
scrapy
django
fsimage
flume
tail
flume-ng
mining
scala
go
kafka
gradle
cassandra
baas
spring
postgres
maven
mybatis
mongodb
https
nodejs
镜像
心理学
机器学习
Keras
theano
anaconda
docker
spark
akka-http
json
群论
区块链
加密
抽象代数
离散对数
同余
欧拉函数
扩展欧几里德算法
ES6
node-inspect
debug
win10
vscode
挖矿