Bump max Gradle version to 7.6 in integration tests

This commit is contained in:
Alexander.Likhachev
2023-01-13 13:53:29 +01:00
committed by Space Team
parent ba2833b90f
commit 4b1c7f1c11
2 changed files with 2 additions and 2 deletions
@@ -135,7 +135,7 @@ fun Test.includeTestsWithPattern(include: Boolean, patterns: (MutableSet<String>
}
fun Test.advanceGradleVersion() {
val gradleVersionForTests = "7.5.1"
val gradleVersionForTests = "7.6"
systemProperty("kotlin.gradle.version.for.tests", gradleVersionForTests)
}
@@ -25,7 +25,7 @@ interface TestVersions {
const val G_8_0 = "8.0-rc-1"
const val MIN_SUPPORTED = minSupportedGradleVersion
const val MIN_SUPPORTED_KPM = G_7_0
const val MAX_SUPPORTED = G_7_5
const val MAX_SUPPORTED = G_7_6
}
object Kotlin {