-
Notifications
You must be signed in to change notification settings - Fork 3k
Force reloadability of project dependencies in QuarkusApplicationModelTask #49117
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
Conversation
518a282
to
c2e664d
Compare
final boolean isProjectDependency = resolvedDependency.getSelected() | ||
.getId() instanceof ProjectComponentIdentifier; | ||
if (projectModule != null || isProjectDependency) { | ||
depBuilder.setReloadable().setWorkspaceModule(); |
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.
@aloubyansky please note that I added .setWorkspaceModule()
here.
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.
I think it shouldn't be necessary. But ok, I guess.
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.
This comment has been minimized.
This comment has been minimized.
c2e664d
to
720f1f3
Compare
@aloubyansky I had to rebase the branch, could you please re-approve? |
Status for workflow
|
Great work @reaver585 , thanks a lot! |
This new Gradle task does not have proper means for workspace discovery, so for now we optimistically setWorkspaceModule() for project dependencies.