File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ buildscript {
46
46
if (using_snapshot_version) {
47
47
repositories {
48
48
mavenLocal()
49
- maven { url " https://oss.sonatype.org/content/repositories/snapshots" }
50
49
}
51
50
}
52
51
@@ -59,6 +58,8 @@ buildscript {
59
58
password = project. hasProperty(' bintrayApiKey' ) ? project. property(' bintrayApiKey' ) : System . getenv(' BINTRAY_API_KEY' ) ?: " "
60
59
}
61
60
}
61
+ // Future replacement for kotlin-dev, with cache redirector
62
+ maven { url " https://cache-redirector.jetbrains.com/maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
62
63
maven {
63
64
url " https://kotlin.bintray.com/kotlin-dev"
64
65
credentials {
@@ -145,14 +146,15 @@ apiValidation {
145
146
146
147
// Configure repositories
147
148
allprojects {
148
- String projectName = it. name
149
149
repositories {
150
150
/*
151
151
* google should be first in the repository list because some of the play services
152
152
* transitive dependencies was removed from jcenter, thus breaking gradle dependency resolution
153
153
*/
154
154
google()
155
155
jcenter()
156
+ // Future replacement for kotlin-dev, with cache redirector
157
+ maven { url " https://cache-redirector.jetbrains.com/maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
156
158
maven {
157
159
url " https://kotlin.bintray.com/kotlin-dev"
158
160
credentials {
You can’t perform that action at this time.
0 commit comments