Skip to content

Commit 0b10654

Browse files
bric3devflow.devflow-routing-intake
andauthored
Remove Groovy from build logic (#10851)
chore(build): Drop Groovy from our build logic Merge branch 'master' into bdu/remove-groovy-from-buildSrc fix(build): Incorrect property lookup Co-authored-by: devflow.devflow-routing-intake <devflow.devflow-routing-intake@kubernetes.us1.ddbuild.io>
1 parent ea1eeab commit 0b10654

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

buildSrc/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
plugins {
2-
groovy
32
`java-gradle-plugin`
43
`kotlin-dsl`
54
`jvm-test-suite`
@@ -72,7 +71,6 @@ repositories {
7271

7372
dependencies {
7473
implementation(gradleApi())
75-
implementation(localGroovy())
7674

7775
implementation("net.bytebuddy", "byte-buddy-gradle-plugin", "1.18.3")
7876

@@ -109,7 +107,7 @@ testing {
109107
}
110108
targets.configureEach {
111109
testTask.configure {
112-
enabled = providers.systemProperty("runBuildSrcTests").isPresent or providers.systemProperty("idea.active").isPresent
110+
enabled = providers.gradleProperty("runBuildSrcTests").isPresent or providers.systemProperty("idea.active").isPresent
113111
}
114112
}
115113
}

0 commit comments

Comments
 (0)