diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index ad06adecc27..3446d691338 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -1,5 +1,4 @@ plugins { - groovy `java-gradle-plugin` `kotlin-dsl` `jvm-test-suite` @@ -72,7 +71,6 @@ repositories { dependencies { implementation(gradleApi()) - implementation(localGroovy()) implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.18.3") @@ -109,7 +107,7 @@ testing { } targets.configureEach { testTask.configure { - enabled = providers.systemProperty("runBuildSrcTests").isPresent or providers.systemProperty("idea.active").isPresent + enabled = providers.gradleProperty("runBuildSrcTests").isPresent or providers.systemProperty("idea.active").isPresent } } }