When continuum detects changes and makes builds, no data is extracted on change date and committer.
It always looks like this
****************************************************************************
SCM Changes:
****************************************************************************
Changed: no author @ no date
Comment: no comment
Files changed:
(here are files)
It is the same machine (SVN/continuum) so we rule out ime difference immediately.
Moreover I've checked in continuum logs, there is "svn --non-interactive log" command executed, and when I type this command in, proper dates and commiters are displayed.
looking at org.apache.maven.continuum.scm.DefaultContinuumScm, I've found that change date/commiters are taken from ScmResult that comes from this method
scmResult = scmManager.getProviderByRepository( repository ).update( repository, fileSet, tag, getLatestUpdateDate( project ) );
result = convertScmResult( scmResult );
Maven SVN SCM Manager returns no changes in scmResult.getChanges()
Where this svn log command is coming from then? Not from Maven SCM but from continuum itself?
Verifying I"m seeing the same issue on WindowsXP; not sure if that's the culprit, but I've been running multiple Continuum instances before and never seen this. I can also see that on some updates we have gotten date & author correctly without anything else changes as far as I know of. Any workaround for the short term would be useful if anyone knows what the issue is.