File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,10 @@ buildscript {
7
7
val kotlin_version: String by project
8
8
val infra_version: String by project
9
9
10
- val kotlinDevUrl by extra { rootProject.properties[" kotlin_repo_url" ] }
11
10
repositories {
12
11
maven(" https://maven.pkg.jetbrains.space/kotlin/p/kotlinx/maven" )
13
12
mavenCentral()
14
- kotlinDevUrl ?.let {
13
+ rootProject.properties[ " kotlin_repo_url " ] ?.let {
15
14
maven { url = uri(it.toString()) }
16
15
}
17
16
}
@@ -42,15 +41,13 @@ configure<InfraExtension> {
42
41
}
43
42
}
44
43
45
-
46
-
47
44
logger.info(" Using Kotlin ${kotlin_version} for project ${project.name} " )
48
45
49
46
repositories {
50
47
mavenCentral()
51
48
gradlePluginPortal()
52
49
53
- project .properties[" kotlinDevUrl " ]?.let { url ->
50
+ rootProject .properties[" kotlin_repo_url " ]?.let { url ->
54
51
maven { setUrl(url.toString()) }
55
52
}
56
53
}
You can’t perform that action at this time.
0 commit comments