Skip to content

Navigation Menu

Sign inAppearance settings
Appearance settings

Commit e9a698b

Browse filesBrowse the repository at this point in the historyBrowse files
CristianGMSpace Team
authored andcommitted
Fix: Properties should be assigned using the 'propName = value' syntax.
1 parent 7401d2c commit e9a698b
Copy full SHA for e9a698b

3 files changed

+6-6Lines changed: 6 additions & 6 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎kotlin-native/build.gradle‎

Copy file name to clipboardExpand all lines: kotlin-native/build.gradle
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ allprojects {
6060
repositories {
6161
mavenCentral()
6262
maven {
63-
url project.bootstrapKotlinRepo
63+
url = project.bootstrapKotlinRepo
6464
}
6565
}
6666
}
Collapse file

‎libraries/tools/script-runtime/build.gradle‎

Copy file name to clipboardExpand all lines: libraries/tools/script-runtime/build.gradle
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
description 'Kotlin Script Runtime'
1+
description = 'Kotlin Script Runtime'
22

33
apply plugin: 'kotlin'
44

Collapse file

‎settings.gradle‎

Copy file name to clipboardExpand all lines: settings.gradle
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ pluginManagement {
44

55
repositories {
66
maven {
7-
url "https://packages.jetbrains.team/maven/p/ij/intellij-dependencies"
7+
url = "https://packages.jetbrains.team/maven/p/ij/intellij-dependencies"
88
content {
99
includeGroupByRegex("org\\.jetbrains\\.intellij\\.deps(\\..+)?")
1010
includeGroupByRegex("com.intellij.platform.*")
1111
includeGroupByRegex("org.jetbrains.jps.*")
1212
}
1313
}
1414
maven {
15-
url "https://redirector.kotlinlang.org/maven/kotlin-dependencies"
15+
url = "https://redirector.kotlinlang.org/maven/kotlin-dependencies"
1616
content {
1717
includeGroup("org.jetbrains.kotlin")
1818
includeGroup("org.spdx")
@@ -21,13 +21,13 @@ pluginManagement {
2121
}
2222
}
2323
google {
24-
url "https://cache-redirector.jetbrains.com/dl.google.com/dl/android/maven2"
24+
url = "https://cache-redirector.jetbrains.com/dl.google.com/dl/android/maven2"
2525
content {
2626
includeGroup("com.android.tools")
2727
}
2828
}
2929
mavenCentral {
30-
url "https://cache-redirector.jetbrains.com/maven-central"
30+
url = "https://cache-redirector.jetbrains.com/maven-central"
3131
}
3232
gradlePluginPortal()
3333
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.