On Thu, Jun 06, 2002 at 05:46:04PM +0200, Colin Chalmers wrote: > The only info I need now is that about the file/developer-activity > etc. > > Is this info extracted from cvs? Or...? If it is from cvs can it be > altered to work with VSS? If so, any tips??
The file and developer activity is actually generated from the change log. By default, this change log is generated from CVS. However, it was designed (follows the Abstract Factory pattern) such that someone could generate a change log from another source control system. There is a property called "maven.changelog.factory" which defines a factory that must implement the following two methods: createGenerator and createParser. createGenerator returns a ChangeLogGenerator and createParser returns a ChangeLogParser. Both of which are interfaces. As long as you implement a concrete VssChangeLogFactory class that returns concrete implementations of VssChangeLogGenerator and VssChangeLogParser, you can simply set the "maven.changelog.factory" property in your project's project.properties file and things should work fine. Thanks, Pete -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
