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:

A number of other sites host DWR resources:

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