-
Notifications
You must be signed in to change notification settings - Fork 82
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
Recipe for migration JakartaEE Security is wrong #160
Comments
mabartos
added a commit
to mabartos/rewrite-migrate-java
that referenced
this issue
Jan 5, 2023
This was referenced Jan 5, 2023
jkschneider
added a commit
that referenced
this issue
Jan 6, 2023
* Recipe for migration JakartaEE Security is wrong Fixes #160 * Update jakarta-ee-9.yml Co-authored-by: Jonathan Schnéider <jkschneider@gmail.com>
@mabartos Thank you for reporting this. I am going to open re-open this, as there is more to do in this area:
Look for a PR shortly. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Packages in our codebase were changed from
javax.security.*
tojakarta.security.*
even though any dependency ofjavax.security.enterprise
is included in the project.The security packages
javax.security.*
are included in the JDK itself, and for JDK 11, it still contains the prefixjavax.*
, so probably these packages should not be updated in the codebase.If we specify the required packages more, we'll avoid unnecessary collisions.
Issue to OpenRewrite docs: openrewrite/rewrite-docs#111
See: quarkusio/quarkus#30198
keycloak/keycloak#16247
The text was updated successfully, but these errors were encountered: