Browser
You can navigate within the sources online with the help of the FishEye installation on Codehaus.
Subversion
JBehave uses subversion as its source control manager.
Anonymous Subversion access
The project’s current repository can be checked out through anonymous subversion access with the following command:
svn co http://svn.codehaus.org/jbehave/trunk jbehave
You might also use this URL to browse the repository in a simple manner.
Developer Subversion access
Developers of JBehave can check out through HTTPS access with the following command:
svn co https://<username>@svn.codehaus.org/jbehave/trunk jbehave
This access protocol is available to all, but only developers can commit changes.
Developers require a LDAP password for CodeHaus username (contact Bob at the Haus to get assigned a password if you don’t have one).
To test HTTPS commit access, one may eg:
svn co https://svn.codehaus.org/jbehave/trunk jbehave
cd jbehave
echo "test" > TEST
svn add TEST
svn commit –username username –password your-password –message "Testing HTTPS"
Note: you only need to specify username and password once per client.
