How to get the JOGL Version?

Is there a way to retrieve the version of jogl that you are using?

There used to be a Version class where you could do a getVersion() to retrieve the build info:
http://www.tml.tkk.fi/Opinnot/T-111.4300/2007/exercises/jogl_javadoc/net/java/games/jogl/Version.html

Is there something equivalent now?

try this:
Package.getPackage(“javax.media.opengl”).getImplementationVersion()

the jar contains the version in the manifest.

thank you.