-
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
Use keycloak-client libraries instead of keycloak-common, keycloak-core and keycloak-adapter-spi #43260
base: main
Are you sure you want to change the base?
Use keycloak-client libraries instead of keycloak-common, keycloak-core and keycloak-adapter-spi #43260
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,16 +22,6 @@ | |
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-tls-registry</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.keycloak</groupId> | ||
<artifactId>keycloak-core</artifactId> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>com.sun.activation</groupId> | ||
<artifactId>jakarta.activation</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here actually. We now have a dependency with the Apache HTTP Client and I don't think we want (except if I'm mistaken) that. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @gsmet This is a mistake at There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks I will have another look next week. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pskopek I think I misunderstood you. The issue is not fixed, right? |
||
<dependency> | ||
<groupId>org.eclipse.angus</groupId> | ||
<artifactId>angus-activation</artifactId> | ||
|
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 now brings the Apache HTTP client as a dependency.
We used to have:
we now have:
I'm not sure we want that?
Now I don't know if we actually want to use the Admin Client now (or later?) to initialize the container in some way?
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.
We don't use the Admin Client in KC Dev Svc. We use there Vert.x Web Client. We only need DTOs from
org.keycloak.representations
.Not sure if it is relevant, but KC Dev Svc is now KC Admin Client dependency, I don't know if above-mentioned tree was done when rebased on current main. It only happened lately.
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 not relevant for the tree of one dependency, but it is relevant for context - if you do exclusions.