DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- query dev@ for any open issues, it helps to look at JIRA first
- create tag, create release branch
- check out release branch
- Set correct version in the pom files:
- Linux:
- find . -name "pom.xml" | xargs sed -i -e "s/1.4-SNAPSHOT/1.4-m1/g"
- find . -name "pom.xml" | xargs sed -i -e "s/wicket\/trunk/wicket\/releases\/wicket-1.4-m1/g"
- Mac OS X:
- find . -name "pom.xml" | xargs sed -i "" -e "s/1.4-SNAPSHOT/1.4-m1/g"
- find . -name "pom.xml" | xargs sed -i "" -e "s/wicket\/trunk/wicket\/releases\/wicket-1.4-m1/g"
- Linux:
- add JIRA generated release notes to CHANGELOG-1.4
- commit to release branch
- call release.sh (see note)
- test the distribution (examples, rat, etc)
- upload m2-repo and dist directory from target/ to p.a.o (see below)
- upload commons/KEY into dist folder on p.a.o
- send vote message
- wait
- upload to mirrors (see below)
- release the version in JIRA
- wait 24 hours for mirrors to pick them up
- announce
NOTE: If you get an error while generating javadocs like the one that follows, run a "mvn clean install" followed by a "mvn javadoc:jar", then re-run release.sh.
Example of error: java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl
Releasing Apache Wicket 1.3.x
...
- add the release to http://wicket.apache.org/quickstart.html and set it as default
- upload the JavaDocs to the website at http://wicket.apache.org/docs/wicket-x.y.z/
and point JavaDocs link to it
...