Set Gradle 7.1.1 as max target version for integration tests

^KT-46019 In Progress
This commit is contained in:
Yahor Berdnikau
2022-06-26 22:45:54 +02:00
committed by Space
parent 398228679a
commit 851f55e9ec
2 changed files with 2 additions and 2 deletions
@@ -122,7 +122,7 @@ fun Test.includeTestsWithPattern(include: Boolean, patterns: (MutableSet<String>
}
fun Test.advanceGradleVersion() {
val gradleVersionForTests = "7.0.2"
val gradleVersionForTests = "7.1.1"
systemProperty("kotlin.gradle.version.for.tests", gradleVersionForTests)
}
@@ -21,7 +21,7 @@ interface TestVersions {
const val G_7_4 = "7.4.2"
const val MIN_SUPPORTED = minSupportedGradleVersion
const val MIN_SUPPORTED_KPM = G_7_0
const val MAX_SUPPORTED = G_7_0
const val MAX_SUPPORTED = G_7_1
}
object Kotlin {