From e15812f19622f61b78e0d29c7aec3608969d7ec1 Mon Sep 17 00:00:00 2001 From: Sebastian Sellmair Date: Fri, 11 Nov 2022 13:19:08 +0100 Subject: [PATCH] [Gradle] kgp-idea: Update testedVersion to 1.8.20-dev-2253 for compatibility tests KT-54825 --- .../build.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/tools/kotlin-gradle-plugin-idea-for-compatibility-tests/build.gradle.kts b/libraries/tools/kotlin-gradle-plugin-idea-for-compatibility-tests/build.gradle.kts index 802c83dfa2f..c8e51d91122 100644 --- a/libraries/tools/kotlin-gradle-plugin-idea-for-compatibility-tests/build.gradle.kts +++ b/libraries/tools/kotlin-gradle-plugin-idea-for-compatibility-tests/build.gradle.kts @@ -4,7 +4,7 @@ * Version of kotlin-gradle-plugin-idea module that should be resolved for compatibility tests * This version can be treated as 'minimal guaranteed backwards compatible version' of the module. */ -val testedVersion = "1.8.20-dev-2237" +val testedVersion = "1.8.20-dev-2253" val isSnapshotTest = properties.contains("kgp-idea.snapshot_test") val resolvedTestedVersion = if (isSnapshotTest) properties["defaultSnapshotVersion"].toString() else testedVersion @@ -38,7 +38,6 @@ dependencies { incomingClasspath.resolutionStrategy { force(kotlin("stdlib", bootstrapKotlinVersion)) force(kotlin("test-junit", bootstrapKotlinVersion)) - force(kotlin("gradle-plugin-annotations", bootstrapKotlinVersion)) // Remove after this is available under 'testedVersion' } }