Development Resources
There are pages on this site, describing how to get involved and who the current development team is, and some pages of development notes.
Java.net hosts many of the DWR development resources. This includes:
- The dwr.dev.java.net home page.
- CVS. This includes a web interface to the DWR repository, however see Fisheye below.
- The mailing list archive. There are several mailing lists, which you can subscribe to.
A number of other sites host DWR resources:
- Cenqua host a repository browser which is very nice: Fisheye looking at DWR.
- We host our own bug tracking database: JIRA on DWR.
- Some extra source-code is stored at SourceForge. See the DWR project on Sourceforge.
- There is also a Google Code project that is currently unused. We're thinking of moving the java.net CVS repository to SVN at Google Code.
Access to CVS
The repository can be found at :pserver:guest@cvs.dev.java.net:/cvs. You can get it using the username 'guest' with no password.
So the following commands should fetch the complete current source tree:
- Check out source code with a CVS client. For example:
cvs -d :pserver:guest@cvs.dev.java.net:/cvs login
followed by
cvs -d :pserver:guest@cvs.dev.java.net:/cvs checkout dwr
It is also possible to access the source repository securely:
- Before you use the above commands forward port 2401 from localhost to the CVS server over SSH using the following command:
ssh tunnel@dwr.dev.java.net -L 2401:localhost:2401
The password is 'tunnel'
Then proceed as above except that the hostname will be localhost rather than cvs.dev.java.net
