Merge branch '2.7.x' into 3.0.x
Closes gh-37026
This commit is contained in:
@@ -85,9 +85,14 @@ class KotlinPluginActionIntegrationTests {
|
||||
if (GradleVersion.version(this.gradleBuild.getGradleVersion()).compareTo(GradleVersion.version("7.3.3")) < 0) {
|
||||
assertThat(configured).containsExactly("help");
|
||||
}
|
||||
else {
|
||||
else if (GradleVersion.version(this.gradleBuild.getGradleVersion())
|
||||
.compareTo(GradleVersion.version("8.3")) < 0) {
|
||||
assertThat(configured).containsExactlyInAnyOrder("help", "clean", "compileKotlin", "compileTestKotlin");
|
||||
}
|
||||
else {
|
||||
assertThat(configured).containsExactlyInAnyOrder("help", "clean", "compileJava", "compileKotlin",
|
||||
"compileTestKotlin");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user