Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are two ways to get the source code, from the project's Subversion repository or from a source release. Here's how to get the Roller trunk (upcoming 5.1) code from Subversion:

Code Block

   svn co httpshttp://svn.apache.org/repos/asf/roller/trunk roller_trunk 

For the current (5.0.x) release branch:

Code Block
   svn co http://svn.apache.org/viewvc/roller/branches/roller_5.0/ roller_50 

Replace "http://" with "https://" in the above URLs if you are presently a Roller committer (i.e., have write access to Roller).

 

TBD: how to get and extract a source release

...

Here's how to build Roller Weblogger (also runs the unit tests).

Code Block

   cd roller_trunk 
   mvn clean install 

...

Here's how to run the Jetty servlet engine, Derby and Roller for development testing of Roller:

Code Block

   cd roller_trunk/app
   mvn jetty:run

...