You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugin/build.gradle.kts
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -168,7 +168,7 @@ dependencies {
168
168
// e.g. for the Android plugin: https://plugins.jetbrains.com/plugin/22989-android/versions/stable
169
169
plugins(
170
170
listOf(
171
-
"org.jetbrains.android:243.26053.27",
171
+
"org.jetbrains.android:251.25410.131",
172
172
)
173
173
)
174
174
@@ -177,6 +177,7 @@ dependencies {
177
177
// Uncomment the version if needing a specific one, e.g. if a regression is introduced in the latest version - see https://github.com/JetBrains/intellij-plugin-verifier/releases
178
178
pluginVerifier(/*version = "1.385"*/)
179
179
180
+
testFramework(TestFrameworkType.Platform)
180
181
testFramework(TestFrameworkType.Plugin.Java)
181
182
182
183
zipSigner()
@@ -215,9 +216,7 @@ intellijPlatform {
215
216
name.set("Apollo GraphQL")
216
217
version.set(project.version.toString())
217
218
ideaVersion {
218
-
// XXX Do update the supported versions in the README.md, and in docs/source/testing/android-studio-plugin.mdx file when updating these values!
219
-
// See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html for insight into build numbers and IntelliJ Platform versions.
220
-
sinceBuild ="243"
219
+
sinceBuild = libs.versions.sinceBuild.get()
221
220
222
221
// No untilBuild specified, the plugin wants to be compatible with all future versions
0 commit comments