Skip to content
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

Jakarta EE 9.1 alignment #386

Open
11 tasks
Emily-Jiang opened this issue Jul 1, 2021 · 0 comments
Open
11 tasks

Jakarta EE 9.1 alignment #386

Emily-Jiang opened this issue Jul 1, 2021 · 0 comments
Milestone

Comments

@Emily-Jiang
Copy link
Member

For each spec, the following updates need to happen, refer this doc for instructions:

  • Create a branch called jakarta91-branch off master to perform Jakarta EE 9.1 alignment

  • Only jakarta namespace changes are allowed in the release without any other functional changes with the exception of typos or tck fixes

  • pom.xml: utilise microprofile-parent 2.1 as it has pulled in all of the Jakarta EE 9.1 as well as the necessary TCK dependencies (see this PR on how to)

  • spec docs: rename Java EE to Jakarta EE, rename javax to jakarta: find . -type f -name '*.asciidoc' -exec sed -i '' s/javax./jakarta./ {} +

  • Update all javax to jakarta for all java files import javax.* needs to be updated to jakarta.*: find . -type f -name '*.java' -exec sed -i '' s/javax./jakarta./ {} +

    • TCKs
    • APIs
  • Update bnd file: find . -type f -name ‘*.bnd' -exec sed -i '' s/javax./jakarta./ {} +

  • service loader file javax.* to jakarta.*: find . -type f -name "javax*" -exec sh -c 'mv "$0" "${0/javax/jakarta}"' '{}' \;

  • deliver the changes to both jakarta91-branch and master

  • Perform a RC release off the branch jakarta91-branch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants