Skip to content

Commit

Permalink
Bump intellij-platform-gradle-plugin to 2.0.0-beta4
Browse files Browse the repository at this point in the history
  • Loading branch information
BoD committed May 28, 2024
1 parent 925ac9a commit c2eb372
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libraries.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ http4k-bom = "org.http4k:http4k-bom:5.8.0.0"
http4k-core = { module = "org.http4k:http4k-core" }
http4k-server-undertow = { module = "org.http4k:http4k-server-undertow" }
http4k-server-jetty = { module = "org.http4k:http4k-server-jetty" }
intellij-platform-plugin = "org.jetbrains.intellij.platform:intellij-platform-gradle-plugin:2.0.0-beta3"
intellij-platform-plugin = "org.jetbrains.intellij.platform:intellij-platform-gradle-plugin:2.0.0-beta4"
intellij-changelog = "org.jetbrains.intellij.plugins:gradle-changelog-plugin:2.0.0"
jetbrains-annotations = { group = "org.jetbrains", name = "annotations", version.ref = "jetbrains-annotations" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
Expand Down
4 changes: 3 additions & 1 deletion intellij-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ tasks {
// Use a custom IJ/AS installation. Set this property in your local ~/.gradle/gradle.properties file.
// (for AS, it should be something like '/Applications/Android Studio.app/Contents')
// See https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-gradle-build-script
localPath = providers.gradleProperty("apolloIntellijPlugin.ideDir").orNull?.let { file(it) }
providers.gradleProperty("apolloIntellijPlugin.ideDir").orNull?.let {
localPath = file(it)
}
}

// Log tests
Expand Down

0 comments on commit c2eb372

Please sign in to comment.