I wonder, if it is possible to get currently used version of maven for filtering resource file.
I've a resource file, that is filtered by maven:
version=${project.version}
buildDate=${timestampFormatted}
buildBy=${user.name}
name=${project.artifactId}
buildVersion=${build.number}
osName=${os.name}
osArch=${os.arch}
osVersion=${os.version}
fileEncoding=${file.encoding}
and now I would prefer to save currently used maven version, too.
Is there any thing like ${maven.version}
?
Thanks a lot.