np, earl. I was doing that with lwjgl, but principle should be the same. First tell me how do you make your .jar file and do you know how to provide your MANIFEST.MF file in it?
I was doing that through Eclipse (export tool), how about you?
If you know how to do that, then include
jogl.jar
jogl-natives-win32.jar
in the same directory as yourfile.jar.
If in MANIFEST.MF in yourfile.jar you wrote
1
| Class-Path:jogl.jar jogl-natives-win32.jar |
then java will search for those libraries after you execute
java -jar yourfile.jar
in the same directory where is yourfile.jar, and there they are.
That is basically it!