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']}
次に、リビジョンを示します。リビジョンとタイムスタンプを表示するために必要な変更は何ですか。タイムスタンプ値にアクセスするにはどうすればよいですか?