DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
| Excerpt | ||
|---|---|---|
| ||
Wicket's SVN strategy |
| Panel | ||||
|---|---|---|---|---|
| ||||
|
...
[Based on Martijn's {{New subversion repository structure }}email to the lists - Gwyn 08:28, 28 Aug 2006 (BST)]
...
This page tries to clarify how to use our subversion repository.
Structure
If you look at the repository you will see the following root structure:
- /trunk/ - (/trunk/ via ViewVC)
- [ /branches/|http://svn.apache.org/repos/asf/incubator/wicket/branches/] (/branches/ via ViewVC)
- /tags/ - (/tags/ via ViewVC)
- /releases/ - (/releases/ via ViewVC)
trunk
trunk is used for the development of the most recent major release of wicket. In this case, that is wicket 2.0. When Wicket 2.0 is released,
trunk will be used for the development of Wicket 2.1, etc.
branches
branches is used for the development of older major versions, when these are in active development. It is also used for bug fixing older releases.
Currently you'll find the following directories there:
...
So if you are asked to check out wicket 1.3, then you'll have to check
out branches/wicket-1.x. If you want the latest sources for Wicket 1.2, then you'll have to check out branches/wicket-1.2.x
tags
The tags directory is used for creating patches against a particular release. For instance, if you have a patch that you want to submit for
wicket 1.2.2, then you'll have to create the patch against:
tags/wicket-1.2.2
releases
The releases directory contains all project files that were used for building a release, after creating the release. This means that the
maven pom.xml files are changed to reflect the specific versions. So if you want to rebuild a particular release yourself, say 1.2.2, you can checkout releases/wicket-1.2.2.
...
If you have questions, please don't hesitate to ask on ##wicket or the mailing lists.
Committers
Note, committers should use http*s*://svn.apache.org/repos/asf/incubator/wicket/.. URLs which will trigger authentication for changes!