Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Commit

Permalink
fix plugin versions + works with IntelliJ 2022.2
Browse files Browse the repository at this point in the history
  • Loading branch information
juli1 committed Jun 27, 2022
1 parent 45d819c commit b8418ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ plugins {
// Java support
id("java")
// Kotlin support
id("org.jetbrains.kotlin.jvm") version "1.6.21"
id("org.jetbrains.kotlin.jvm") version "1.7.0"
// GraphQL
id("com.apollographql.apollo") version "2.5.11"
id("com.apollographql.apollo") version "2.5.12"
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "1.6.0"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
Expand All @@ -29,7 +29,7 @@ repositories {

dependencies {
// GraphQL API
implementation("com.apollographql.apollo:apollo-runtime:2.5.11")
implementation("com.apollographql.apollo:apollo-runtime:2.5.12")

// OS detection
implementation("org.apache.commons:commons-lang3:3.12.0")
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ pluginVersion = 1.6.4


pluginSinceBuild = 212.*
pluginUntilBuild = 221.*
pluginUntilBuild = 222.*
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions
pluginVerifierIdeVersions = 2021.2, 2021.3, 2022.1
pluginVerifierIdeVersions = 2021.2, 2021.3, 2022.1, 2022.2

platformType = IC
platformVersion = 2021.3
Expand Down

0 comments on commit b8418ae

Please sign in to comment.