https://github.com/autonomousapps/gradle-find-property-issue
https://github.com/autonomousapps/gradle-find-property-issue
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/autonomousapps/gradle-find-property-issue
- Owner: autonomousapps
- Created: 2024-06-18T21:17:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-18T21:30:17.000Z (about 2 years ago)
- Last Synced: 2025-10-14T15:53:03.647Z (10 months ago)
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Minimal reproducer for https://github.com/gradle/gradle/issues/29600.
Run `./gradlew help` and observe the output.
Expected behavior:
`project.findProperty` will walk the project hierarchy from the current project, to the parent, ...,
to the root project (eventually).
Observed behavior:
If the current project has no property defined, then the global property (defined in the root
`gradle.properties` file) will be used, ignoring any intermediate property defined in a
`parent/gradle.properties` file.
Relates to https://github.com/gradle/gradle/issues/24491.