Skip to content

Instantly share code, notes, and snippets.

@agritsik
Created April 21, 2016 05:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agritsik/b2f66b3a5bec38f4ff2a0fecc0f62b46 to your computer and use it in GitHub Desktop.
Save agritsik/b2f66b3a5bec38f4ff2a0fecc0f62b46 to your computer and use it in GitHub Desktop.
Find out glassfish dependency versions
# check Jersey version
unzip -p jersey-common.jar META-INF/MANIFEST.MF | grep Bundle-Version
# Output example: Bundle-Version: 2.10.4
# check Eclipselink version
unzip -p org.eclipse.persistence.core.jar META-INF/MANIFEST.MF | grep Bundle-Version
# Output example: Bundle-Version: 2.5.2.v20140319-9ad6abd
# check JSF version
unzip -p javax.faces.jar META-INF/MANIFEST.MF | grep Bundle-Version
# Output example: Bundle-Version: 2.2.7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment