How can I configure my web application for deployment in Tomcat so that Tomcat Manager shows the version in the table that lists all applications installed (/manager/html/li
With maven set the output war file name:
... MyTest 0.0.1 ... ${project.artifactId}##${project.version} ...
Output -> MyTest##0.0.1.war
Or simple rename war-file with format file_name##version.war ;)