File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ http4k-bom = "org.http4k:http4k-bom:5.8.0.0"
116
116
http4k-core = { module = " org.http4k:http4k-core" }
117
117
http4k-server-undertow = { module = " org.http4k:http4k-server-undertow" }
118
118
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"
120
120
intellij-changelog = " org.jetbrains.intellij.plugins:gradle-changelog-plugin:2.0.0"
121
121
jetbrains-annotations = { group = " org.jetbrains" , name = " annotations" , version.ref = " jetbrains-annotations" }
122
122
junit = { group = " junit" , name = " junit" , version.ref = " junit" }
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ val apolloDependencies = configurations.create("apolloDependencies").apply {
57
57
tasks {
58
58
withType<KotlinCompilationTask <* >> {
59
59
compilerOptions {
60
- freeCompilerArgs = listOf (" -Xcontext-receivers" )
60
+ freeCompilerArgs.set( listOf (" -Xcontext-receivers" ) )
61
61
}
62
62
}
63
63
@@ -66,7 +66,7 @@ tasks {
66
66
// (for AS, it should be something like '/Applications/Android Studio.app/Contents')
67
67
// See https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-gradle-build-script
68
68
providers.gradleProperty(" apolloIntellijPlugin.ideDir" ).orNull?.let {
69
- localPath = file(it)
69
+ localPath.set( file(it) )
70
70
}
71
71
72
72
task {
@@ -182,7 +182,7 @@ intellijPlatform {
182
182
}
183
183
}
184
184
185
- verifyPlugin {
185
+ pluginVerification {
186
186
ides {
187
187
recommended()
188
188
}
You can’t perform that action at this time.
0 commit comments