Hi Cesar,
Thank you very much for volunteering to help out! Your steps look correct to me, however, I should of mentioned one additional detail, that the signature files (e.g. *.se8) under src/com/sun/ts/tests/signaturetest/ need to be regenerated, not manually updated. Sorry about that. :(
Your changes to install/jakartaee/bin/sig-test-pkg-list_se9.txt + install/jakartaee/bin/sig-test-pkg-list.txt look correct but I'm afraid that the other changes to actual signature files (*.se8) should be reverted.
I'll respond on the pr directly. Olivier Lamy is already doing servlet and I just created a pr for switching javax.enterprise to jakarta.enterprise, available still are:
ag --ignore .git -l javax.| xargs sed -i 's/javax\.faces\./jakarta\.faces\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.jms\./jakarta\.jms\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.json\./jakarta\.json\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.mail\./jakarta\.mail\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.persistence\./jakarta\.persistence\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.security\.auth\./jakarta\.security\.auth\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.security\.enterprise\./jakarta\.security.enterprise\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.security\.jacc\./jakarta\.security\.jacc\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.websocket\./jakarta\.websocket\./g'
ag --ignore .git -l javax.| xargs sed -i 's/javax\.ws\.rs\./jakarta\.ws\.rs\./g'
Some of these have already been partially done.
Also, we have been updating the file Copyright date, to add 2020. If there currently is one year listed in Copyright, then add ", 2020", otherwise update the second date listed to 2020.
repo=~/.m2/repository/org/glassfish/copyright/glassfish-copyright-maven-plugin
v=`ls $repo | grep '^[1-9]' | tail -1`
for i in `git status --porcelain --untracked-files=no | cut -d' ' -f3`; do java -cp $repo/$v/glassfish-copyright-maven-plugin-$v.jar org.glassfish.copyright.Copyright -r -c $i; done
Thanks,
Scott