Reputation: 1872
How can I determine which version of an EAR was installed on Websphere 8.0.0.4?
In other words, how can I be sure that the latest version of my EAR is still deployed and/or is currently started in a scenario where I did not do the deployment myself?
Upvotes: 2
Views: 5489
Reputation: 1760
If your EAR uses metadata for modules (e.g. by using Maven EAR plugin with option addDefaultImplementation entries that adds Implementation-Version into Manifest file), then you can see EAR version in Admin console (Applications->Application Types->WebSphere enterprise applications->select EAR->Application binaries->Application build level). Another option is if deployer entered this information while deploying EAR. Third option is if EAR contains version in file name (if built with Maven).
Upvotes: 2