[gradle][IDEA-381560] updated Gradle compatibility matrix to Gradle 9.2.0

(cherry picked from commit 341934be454665960c450507231ed13744146898)

IJ-CR-181051

GitOrigin-RevId: 12f98e6fb08ad9e5a760763b5b3fa36a2a8ee586
This commit is contained in:
Alexander.Glukhov
2025-10-31 16:56:50 +01:00
committed by intellij-monorepo-bot
parent 5e030fd6f4
commit b92192cac0
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ internal val DEFAULT_DATA = GradleCompatibilityState(
"6.0", "6.0.1", "6.1", "6.2", "6.3", "6.4", "6.5", "6.6", "6.7", "6.8", "6.8.3", "6.9",
"7.0", "7.1", "7.2", "7.3", "7.4", "7.5", "7.5.1", "7.6",
"8.0", "8.1", "8.2", "8.3", "8.4", "8.5", "8.6", "8.7", "8.8", "8.9", "8.10", "8.10.2", "8.11", "8.12", "8.13", "8.14",
"9.0.0", "9.1.0"
"9.0.0", "9.1.0", "9.2.0"
),
compatibility = listOf(
VersionMapping(java = "6-8", gradle = "INF-5.0"),

View File

@@ -99,7 +99,7 @@
"6.0", "6.0.1", "6.1", "6.2", "6.3", "6.4", "6.5", "6.6", "6.7", "6.8", "6.8.3", "6.9",
"7.0", "7.1", "7.2", "7.3", "7.4", "7.5", "7.5.1", "7.6",
"8.0", "8.1", "8.2", "8.3", "8.4", "8.5", "8.6", "8.7", "8.8", "8.9", "8.10", "8.10.2", "8.11", "8.12", "8.13", "8.14",
"9.0.0", "9.1.0"
"9.0.0", "9.1.0", "9.2.0"
],
"compatibility": [
{"java": "6-8", "gradle": "INF-5.0"},

View File

@@ -11,7 +11,7 @@ class GradleJvmSupportMatricesTest : GradleJvmSupportMatricesTestCase() {
private const val LATEST_SUPPORTED_JAVA_VERSION = 25
private const val FUTURE_JAVA_VERSION = 100
private const val BUNDLED_GRADLE_VERSION = "9.0.0"
private const val LATEST_GRADLE_VERSION = "9.1.0"
private const val LATEST_GRADLE_VERSION = "9.2.0"
}
fun `test bundled gradle version`() {
@@ -213,7 +213,7 @@ class GradleJvmSupportMatricesTest : GradleJvmSupportMatricesTestCase() {
assertSupportedGradleVersion("8.0") { minOrNull() }
assertSupportedGradleVersion("8.14") { maxOrNull() }
assertSupportedGradleVersion("9.0.0") { minOrNull() }
assertSupportedGradleVersion("9.1.0") { maxOrNull() }
assertSupportedGradleVersion("9.2.0") { maxOrNull() }
assertSupportedGradleVersion(LATEST_GRADLE_VERSION) { maxOrNull() }
}