You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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 alignmentOnly 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 tojakarta.*
:find . -type f -name '*.java' -exec sed -i '' s/javax./jakarta./ {} +
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
andmaster
Perform a RC release off the branch
jakarta91-branch
The text was updated successfully, but these errors were encountered: