我正在尝试在 Web 应用程序的标题栏上显示最新的 SVN 修订号和时间戳。我当前的代码显示修订号但不显示时间戳。两者都没有走到一起。我正在使用以下代码。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
<configuration>
<useLastCommittedRevision>true</useLastCommittedRevision>
</configuration>
</execution>
<execution>
<id>generate-timestamp</id>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
</plugin>
它仅显示修订号。从jsp我正在访问这样的值
${initParam['build']}
然后它显示修订。显示修订和时间戳所需的修改是什么。以及如何访问时间戳值?