how can I determine the version of a struts.jar?
Created May 7, 2012
Rob Parker The easiest way I can think of it to unzip the jar and look at the manifest.mf file. The manifest should contain a line called Implementation Version. Here is my manifest.mf:
So my version is 1.0.2
Rob
Manifest-Version: 1.0
Implementation-Version: 1.0.2
Specification-Title: Struts Framework
Specification-Version: 1.0
Implementation-Title: Struts Framework
Extension-Name: Struts Framework
Created-By: Ant 1.4.1
Implementation-Vendor-Id: org.apache
Implementation-Vendor: Apache Software Foundation
Specification-Vendor: Apache Software Foundation
So my version is 1.0.2
Rob