Commit bc7889d
authored
Make Gradle plugin isolation compatible (#325)
project.findProperty is not Gradle project isolation compatible
(https://docs.gradle.org/current/userguide/isolated_projects.html)
because it attempts to read properties from parent projects, thus
violating project isolation.
Instead, moving to project.providers.gradleProperty that does not
have this behavior.
Fixes #2581 parent 4cb4422 commit bc7889d
File tree
1 file changed
+2
-2
lines changed- plugin/main/src/kotlinx/benchmark/gradle
1 file changed
+2
-2
lines changedLines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | | - | |
75 | | - | |
| 74 | + | |
| 75 | + | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| |||
0 commit comments