-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
ArC - make it possible to exclude types and dependencies #9868
Conversation
mkouba
commented
Jun 8, 2020
- resolves Ability to exclude 3rd party CDI beans/factories from Quarkus Arc bean resolution #9545
@@ -12,18 +12,18 @@ | |||
* The maven groupId of the artifact to index | |||
*/ | |||
@ConfigItem | |||
String groupId; | |||
public String groupId; |
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.
Could this be made an immutable class, btw? Not necessarily in this PR.
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.
It's a config group. I'm not sure it's possible to make config groups immutable?
independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanProcessor.java
Outdated
Show resolved
Hide resolved
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.
It looks ok to me. A note on paths not associated with a key. I'm wondering whether that could be viewed as an incomplete support of this feature. It could be improved though. If the additional path is a JAR, in the majority of cases it will include Maven metadata which could be used to extract its key. Something to keep in mind.
extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/ArcConfig.java
Outdated
Show resolved
Hide resolved
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.
LGTM, I only added a small comment
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.
LGTM