Browse Source
* Fix signing bundle with Gradle 8.1 with configuration cache Compose Gradle plugin was launching `/usr/bin/security --find-identity` in a lazy property of AbstractJPackageTask. Without the configuration cache the computation was delayed to the execution phase. However, configuration cache serializes all properties of all configured tasks, so launching of `/usr/bin/security` shifted to the configuration phase. Gradle 8.1 started to throw an exception if an external process is launched during configuration time. This change explicitly moves the call to `/usr/bin/security` to the execution phase. Resolves #3060 * Turn off Gradle configuration cache for one testpull/3077/head
Alexey Tsvetkov
2 years ago
committed by
GitHub
5 changed files with 42 additions and 20 deletions
Loading…
Reference in new issue