No. The changelog plugin operates exclusively on the SCM (in ur case CVS). An example changelog report:
http://wiztools.org/project/WizCrypt/changelog.html But, u may write a wrapper over ur build scripts that does the following: 1. When ever a build is triggered, the tag or the revision of the code is persisted, may be in a DB. 2. A changelog report is generated between the previous tag/revision and the current one being built. This way u will be able to find the commits between the builds, and the commits that can cause a build failure. Regards, Subhash. On 3/23/06, Allen Young <[EMAIL PROTECTED]> wrote: > > Can "changelog-maven-plugin" give me a report about junit testing > containing > author information? I was thinking this should be the responsiblity of > "surefire-report-maven-plugin". > > > 2006/3/23, Subhash Chandran <[EMAIL PROTECTED]>: > > > > The requirement regarding daily build is satisfied using the Continuum > > project: > > > > http://maven.apache.org/continuum/ > > > > This is a continuous integration server. > > > > Regarding the detail regarding who has committed what, we have the > > changelog-maven-plugin: > > > > http://mojo.codehaus.org/changelog-maven-plugin/ > > > > Regards, > > Subhash. > > > > On 3/23/06, Allen Young <[EMAIL PROTECTED]> wrote: > > > > > > Here is the scenario: > > > > > > Several developers check their java code (including unit tests writing > > in > > > junit) into a CVS everyday. And I want to run a daily build to see if > > all > > > the code can be compiled and all the unit tests are passed. If there > is > > > any > > > error about the compiling or unit test, I want to know which developer > > is > > > responsed to it. > > > I know that using "surefire-report-maven-plugin" can generate a report > > > including junit test result. But it seems that it doesn't contain the > > > information about the author of the code and unit test. I also want to > > > know > > > how can I use Maven with CVS. Add a certain plugin? > > > > > > I think this is a common wanted functionality, shall we put an article > > > about > > > this at Maven's home page? > > > > > > Regards. > > > > > > Allen. > > > > > > > > >
