File tree 4 files changed +5
-5
lines changed
platform/build-scripts/groovy/org/jetbrains/intellij/build/impl
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 17
17
</condition >
18
18
<exec executable =" ${ gradle.executable } " dir =" ${ project.home } /build/dependencies" failonerror =" true" >
19
19
<arg value =" --no-daemon" />
20
- <arg value =" setupKotlin " />
20
+ <arg value =" setupKotlinPlugin " />
21
21
</exec >
22
22
<propertyset id =" intellij.build.properties" >
23
23
<propertyref name =" build.number" />
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ binding.setVariable("loadProject", {
110
110
bundledKotlinPath = "$home/community/build/dependencies/build/kotlin/Kotlin/kotlinc"
111
111
}
112
112
if (!new File(bundledKotlinPath, "lib/kotlin-runtime.jar").exists()) {
113
- projectBuilder.error("Could not find Kotlin runtime at $bundledKotlinPath/lib/kotlin-runtime.jar: run `./gradlew setupKotlin ` in dependencies module to download Kotlin JARs")
113
+ projectBuilder.error("Could not find Kotlin runtime at $bundledKotlinPath/lib/kotlin-runtime.jar: run `./gradlew setupKotlinPlugin ` in dependencies module to download Kotlin JARs")
114
114
return
115
115
}
116
116
setPathVariable("KOTLIN_BUNDLED", bundledKotlinPath)
@@ -159,7 +159,7 @@ private boolean ensureKotlinCompilerAddedToClassPath() {
159
159
kotlinPluginLibPath = "$home/community/build/dependencies/build/kotlin/Kotlin/lib"
160
160
}
161
161
if (!new File(kotlinPluginLibPath, "kotlin-runtime.jar").exists()) {
162
- projectBuilder.error("Could not find Kotlin JARs at $kotlinPluginLibPath: run `./gradlew setupKotlin ` in dependencies module " +
162
+ projectBuilder.error("Could not find Kotlin JARs at $kotlinPluginLibPath: run `./gradlew setupKotlinPlugin ` in dependencies module " +
163
163
"to download Kotlin JARs")
164
164
return false
165
165
}
Original file line number Diff line number Diff line change 30
30
</condition >
31
31
<exec executable =" ${gradle.executable}" dir =" ${project.home}/build/dependencies" failonerror =" true" >
32
32
<arg value =" --no-daemon" />
33
- <arg value =" setupKotlin " />
33
+ <arg value =" setupKotlinPlugin " />
34
34
</exec >
35
35
<java failonerror =" true" classname =" org.apache.tools.ant.Main" fork =" true" >
36
36
<jvmarg line =" -Xms64m -Xmx512m" />
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ class CompilationContextImpl implements CompilationContext {
146
146
}
147
147
else {
148
148
messages. error(
149
- " Could not find Kotlin JARs at $kotlinPluginLibPath : run `./gradlew setupKotlin ` in dependencies module to download Kotlin JARs" )
149
+ " Could not find Kotlin JARs at $kotlinPluginLibPath : run `./gradlew setupKotlinPlugin ` in dependencies module to download Kotlin JARs" )
150
150
}
151
151
}
152
152
You can’t perform that action at this time.
0 commit comments