-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Kotlin plugin 1.9.20 (#864)
* Upgrade to Kotlin plugin 1.9.20 * Workaround Kotlin 1.9.20 bug Since Kotlin plugin 1.9.20, kapt tasks are broken if dependencies are added to the KAPT configurations in an `afterEvaluate`. This is precisely what we were doing. Since using `afterEvaluate` is often a code smell (but it wasn't in our case), the proposed solution is to deprecate the use of `additionalSourceSets`, and have an eager configuration of sourceSets instead, as soon as the `sourceSets(...)` method is called. It's a small breaking change, in the sense that if the user had configured the `additionalSourceSets` and later in time decides to remove entries from that list, then this would no longer work. * Make Sonar happier
- Loading branch information
Showing
11 changed files
with
284 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.