File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,13 @@ buildscript {
51
51
repositories {
52
52
jcenter()
53
53
maven { url " https://kotlin.bintray.com/kotlinx" }
54
- maven { url " https://kotlin.bintray.com/kotlin-dev" }
54
+ maven {
55
+ url " https://kotlin.bintray.com/kotlin-dev"
56
+ credentials {
57
+ username = project. hasProperty(' bintrayUser' ) ? project. property(' bintrayUser' ) : System . getenv(' BINTRAY_USER' ) ?: " "
58
+ password = project. hasProperty(' bintrayApiKey' ) ? project. property(' bintrayApiKey' ) : System . getenv(' BINTRAY_API_KEY' ) ?: " "
59
+ }
60
+ }
55
61
maven { url " https://kotlin.bintray.com/kotlin-eap" }
56
62
maven { url " https://jetbrains.bintray.com/kotlin-native-dependencies" }
57
63
maven { url " https://plugins.gradle.org/m2/" }
@@ -125,7 +131,13 @@ allprojects {
125
131
google()
126
132
}
127
133
jcenter()
128
- maven { url " https://kotlin.bintray.com/kotlin-dev" }
134
+ maven {
135
+ url " https://kotlin.bintray.com/kotlin-dev"
136
+ credentials {
137
+ username = project. hasProperty(' bintrayUser' ) ? project. property(' bintrayUser' ) : System . getenv(' BINTRAY_USER' ) ?: " "
138
+ password = project. hasProperty(' bintrayApiKey' ) ? project. property(' bintrayApiKey' ) : System . getenv(' BINTRAY_API_KEY' ) ?: " "
139
+ }
140
+ }
129
141
maven { url " https://kotlin.bintray.com/kotlin-eap" }
130
142
maven { url " https://kotlin.bintray.com/kotlinx" }
131
143
}
You can’t perform that action at this time.
0 commit comments