赞
踩
下面是以更改Spring Boot源码中的Gradle为例,把仓库源全部改成阿里的仓库源。
- allprojects {
- group "org.springframework.boot"
-
- repositories {
- // 本地仓库
- mavenLocal()
- // 阿里公共仓库
- maven {
- url 'https://maven.aliyun.com/repository/public/'
- }
- // 阿里-谷歌
- maven {
- url 'https://maven.aliyun.com/repository/google'
- }
- // 阿里-gradle插件
- maven{
- url 'https://maven.aliyun.com/repository/gradle-plugin'
- }
- // 阿里-spring
- maven {
- url 'https://maven.aliyun.com/repository/spring/'
- }
- // 阿里-grails
- maven {
- url 'https://maven.aliyun.com/repository/grails-core'
- }
- // maven仓库
- mavenCentral()
-
- // 以下是Spring自己仓库
- if (version.contains('-')) {
- maven { url "https://repo.spring.io/milestone" }
- }
- if (version.endsWith('-SNAPSHOT')) {
- maven { url "https://repo.spring.io/snapshot" }
- }
- }
-
- configurations.all {
- resolutionStrategy.cacheChangingModulesFor 0
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。