Skip to content

Commit 1bb2514

Browse files
authored
Bump the IntelliJ Platform Gradle Plugin (#6086)
1 parent f5e6e74 commit 1bb2514

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gradle/libraries.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ http4k-bom = "org.http4k:http4k-bom:5.8.0.0"
116116
http4k-core = { module = "org.http4k:http4k-core" }
117117
http4k-server-undertow = { module = "org.http4k:http4k-server-undertow" }
118118
http4k-server-jetty = { module = "org.http4k:http4k-server-jetty" }
119-
intellij-platform-plugin = "org.jetbrains.intellij.platform:intellij-platform-gradle-plugin:2.0.0-rc1"
119+
intellij-platform-plugin = "org.jetbrains.intellij.platform:intellij-platform-gradle-plugin:2.0.0"
120120
intellij-changelog = "org.jetbrains.intellij.plugins:gradle-changelog-plugin:2.0.0"
121121
jetbrains-annotations = { group = "org.jetbrains", name = "annotations", version.ref = "jetbrains-annotations" }
122122
junit = { group = "junit", name = "junit", version.ref = "junit" }

intellij-plugin/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ val apolloDependencies = configurations.create("apolloDependencies").apply {
5757
tasks {
5858
withType<KotlinCompilationTask<*>> {
5959
compilerOptions {
60-
freeCompilerArgs = listOf("-Xcontext-receivers")
60+
freeCompilerArgs.set(listOf("-Xcontext-receivers"))
6161
}
6262
}
6363

@@ -66,7 +66,7 @@ tasks {
6666
// (for AS, it should be something like '/Applications/Android Studio.app/Contents')
6767
// See https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-gradle-build-script
6868
providers.gradleProperty("apolloIntellijPlugin.ideDir").orNull?.let {
69-
localPath = file(it)
69+
localPath.set(file(it))
7070
}
7171

7272
task {
@@ -182,7 +182,7 @@ intellijPlatform {
182182
}
183183
}
184184

185-
verifyPlugin {
185+
pluginVerification {
186186
ides {
187187
recommended()
188188
}

0 commit comments

Comments
 (0)