Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jakarta.ee-spec.committee] spec finalization checklist

1. Shouldn't there be an item for the project team to send email to
tck@xxxxxxxxxxx with a link to the certification request?

2. Many of the release jobs perform the release by creating a separate
branch with the release contents.  This branch should be merged to master
when the release is approved.  For example, there's an 8.0.0-BRANCH
branch in the jakartaee-api project:
https://github.com/eclipse-ee4j/jakartaee-api/tree/8.0.0-BRANCH

This should be merged to master using something like:

$ git clone git@xxxxxxxxxx:eclipse-ee4j/jakartaee-api.git
$ cd jakartaee-api
$ git merge origin/8.0.0-BRANCH
$ git push origin master
$ git push origin :8.0.0-BRANCH # delete the branch


Back to the top