-
-
Notifications
You must be signed in to change notification settings - Fork 544
Migrate to ArtifactView API #1297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+7,654
−35
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
94e2a5a
perf: defer configuration resolution to execution phase
mikepenz 4cdf959
test: add unit tests for AboutLibraries plugin
mikepenz 6186515
chore: update generated aboutlibraries.json files
mikepenz 7683c47
ci: add Gradle plugin tests and publish test report
mikepenz c468370
test: suppress warnings for WithPluginClasspathUsage in configuration…
mikepenz 9786245
test: enhance validation of JSON structure and license information in…
mikepenz 7e5f215
test: improve logging performance by conditionally checking debug lev…
mikepenz 0a6da92
test: enable pretty printing for aboutLibraries JSON output
mikepenz 36df21b
test: optimize output file configuration by using flatMap for better …
mikepenz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,4 +20,6 @@ docs | |
| /vendor/* | ||
| .kotlin/ | ||
|
|
||
| iosApp/iosApp.xcodeproj | ||
| iosApp/iosApp.xcodeproj | ||
| /gradle-user-home/ | ||
| /tmp/ | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The call to
artifactsViaView()on line 273 triggers artifact resolution immediately, which happens during the provider evaluation. While this is better than configuration-time resolution, the function name and comment suggest lazy resolution, butincoming.artifactView().artifactsis not completely lazy - it resolves when accessed.The
artifactsproperty returns aArtifactCollectionthat resolves when iterated. This means the resolution still occurs, just at a different time (during task execution when the provider is evaluated, rather than during configuration). The improvement is real but the implementation could be clearer about when resolution actually happens.