Contact the core Jetty developers at
www.webtide.com
private support for your internal/customer projects ... custom extensions and distributions ... versioned snapshots for indefinite support ... scalability guidance for your apps and Ajax/Comet projects ... development services from 1 day to full product delivery
private support for your internal/customer projects ... custom extensions and distributions ... versioned snapshots for indefinite support ... scalability guidance for your apps and Ajax/Comet projects ... development services from 1 day to full product delivery
DOCUMENTATION: Jetty 6 - this wiki. Jetty 7 - at Eclipse. Jetty8 - at Eclipse. Jetty 9 - at Eclipse.
Skip to end of metadata
Go to start of metadata
Jetty6 Release Process
Currently the release procedure for Jetty6 is a mostly manual operation:
- Verify that there are no blocking issues on the lists or in JIRA.
- Update VERSION.txt with the release number and date and commit to trunk. Copy this to trunk VERSION.txt
- Create tags in jetty and jetty-contrib repositories with a copy from trunk (or the branch used as a basis for the release):
svn cp -m 'release x.y.z' https://svn.codehaus.org/jetty/jetty/branches/jetty-6.1 https://svn.codehaus.org/jetty/jetty/tags/jetty-x.y.z svn cp -m 'release x.y.z' https://svn.codehaus.org/jetty-contrib/jetty/branches/jetty-6.1 https://svn.codehaus.org/jetty-contrib/jetty/tags/jetty-contrib-x.y.z
- Checkout tag:
svn co https://svn.codehaus.org/jetty/jetty/tags/jetty-x.y.z
- Edit svn:externals to include contrib tag:
cd jetty-x.y.z svn propedit svn:externals . # change branches to jetty/tags/jetty-contrib-x.y.z rm -fr contrib svn up
- Update the poms and other files to change 6.1-SNAPSHOT to x.y.z:
The diff in the script will sometimes need to be updated. Recursive
find -name '*.xml' -o -name '*.TXT' -o -name '*.txt' | while read file ; do sed --in-place -e 's/6.1 SNAPSHOT/x.y.z/g' $file ; done
greps should be done to make sure that all 6.1-SNAPSHOT references have been updated. - Commit the changes to the tag:
svn commit -m 'release x.y.z' svn commit -m 'release x.y.z' contrib
- build the release with javadoc + jxr for bundle
#build the release bundles:
mvn install # find all instanced of plugin-plugin in pom.xml and comment them out. cd distribution/jetty-assembly mvn install (this builds out the javadocs and jxr directories in root distribution) cd ../.. # revert the plugin-plugin pom.xml files. Complain on lists that we should fix this.
This builds a binary and source zip bundle in the parent directory.bin/build_release_bundles.sh .
#build additional bundles and jars:
NOTE: you will need the rpmbuild utility installed in order to build the rpm module. this is also a somewhat optional step and can be completed after the release if need be
NOTE: you will need special utilities installed in order to build the debian module (see the README in contrib/debian for details).# Gregw thinks that these steps should now be deploy steps # to the staging area after we deploy the main stuff below cd contrib/j2se6 (NOTE: you need to do this with jdk1.6!) mvn install cd contrib/maven-beanshell-plugin mvn install cd contrib/rpm mvn install cd ../jetty-ant mvn install cd ../../extra/jboss mvn -Djboss.home=<your jboss install dir> install cd ../..
- Tell somebody else about the tag and ask them to check it out and test it!
- Test the tag yourself in situ (if you need to fix anything you will need to completely clean and go back to first build step).
- Test the built bundle
- Test the RPM
- Wait a day for other feedback from other testers
- Create directories in distribution directories and copy artifacts to codehaus (webdav to https://dav.codehaus.org/dist/jetty/ ) and mortbay (scp to mortbay@mortbay.com:/home/ftp/pub/jetty-x.y.z/). The artifacts to upload are:
- jetty-x.y.z.zip
- jetty-x.y.z-src.zip
- jetty-ant-x.y.z.jar
- jetty6-*-x.y.z.noarch.rpm
- jetty-x.y.z-jboss-p.q.y.GA-jsp-2.1.sar
- jetty-j2se6-x.y.z.jar
- jetty6-all.deb
- ONLY WHEN YOU ARE REALLY REALLY REALLY REALLY REALLY SURE EVERYTHING IS REALLY REALLY REALLY OK, then push the maven artifacts:
mvn -DupdateReleaseInfo=true deploy cd distribution/jetty-assembly mvn -DupdateReleaseInfo=true deploy (site component for jetty-site generation)
- Update jira to release the version, and enter the next version number
- Tell everybody: blogs, lists, etc.
- Wait for the bug reports to come in
Labels