Hi Oleg,
thank you for the SVN tip, it's "immediate" that I need.
The plugin shows in debug mode it would set all the interesting properties. I just don't have them written in file... here's its relevant output pasted from the console after running "mvn svn-revision-number:revision --debug":
[DEBUG] setting properties
[DEBUG] prefix.repository = svn://
mymachine.name[DEBUG] prefix.path = trunk/myproject
[DEBUG] prefix.revision = 72005
[DEBUG] prefix.mixedRevisions = true
[DEBUG] prefix.committedRevision = 72005
[DEBUG] prefix.committedDate = 2013-07-12 18:38:21 +0200 (Fri, 12 Jul 2013)
[DEBUG] prefix.status = M?
[DEBUG] prefix.specialStatus = Mu
[INFO] -----------------------------------------------------------------------
[INFO] BUILD SUCCESS
...and here's the contents of \src\main\resources\revision.txt:
repository = ${prefix.repository}
path = ${prefix.path}
revision = ${prefix.revision}
mixedRevisions = ${prefix.mixedRevisions}
committedRevision = ${prefix.committedRevision}
committedDate = ${prefix.committedDate}
status = ${prefix.status}
specialStatus = ${prefix.specialStatus}
Thank you!
JC