https://github.com/hsz/gradle-82-opposite-option-issue
https://github.com/hsz/gradle-82-opposite-option-issue
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hsz/gradle-82-opposite-option-issue
- Owner: hsz
- Created: 2023-07-07T08:26:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-07T08:35:23.000Z (about 2 years ago)
- Last Synced: 2025-01-13T10:22:40.641Z (9 months ago)
- Language: Kotlin
- Homepage: https://github.com/gradle/gradle/issues/25658
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gradle-82-opposite-option-issue
Reported as: https://github.com/gradle/gradle/issues/25658
To reproduce the issue, call:
```bash
./gradlew wrapper -PgradleVersion=8.1.1
./gradlew myTask --no-feature
```It should print the `true` value, as expected:
```
> Task :myTask
noFeature = true
```After switching to Gradle `8.2`, it prints the `false` value instead, which isn't expected:
```bash
./gradlew wrapper -PgradleVersion=8.2
./gradlew myTask --no-feature
```Result:
```
> Task :myTask
noFeature = false
```