never mind…
i had the antlr.jar in /Library/Java/Extensions - that was the error.
after removing it from that location it builds.
i consider this a bit strange…
and all those deprecation-warnings 
atze
oh, i had to repair this:
java.compile:
[javac] Compiling 91 source files to /Volumes/Data/Users/xxx/jogl/build/classes
[javac] /Volumes/Data/Users/xxx/jogl/src/net/java/games/jogl/impl/macosx/MacOSXGLContext.java:177: deleteContext(long,long) in net.java.games.jogl.impl.macosx.CGL cannot be applied to (long,)
[javac] if (!CGL.deleteContext(nsContext, null)) {
[javac] ^
[javac] /Volumes/Data/Users/xxx/jogl/src/net/java/games/jogl/impl/macosx/MacOSXDummyGLContext.java:113: destroy() in net.java.games.jogl.impl.macosx.MacOSXDummyGLContext cannot override destroy() in net.java.games.jogl.impl.GLContext; attempting to assign weaker access privileges; was public
[javac] private void destroy() {
[javac] ^
[javac] Note: /Volumes/Data/Users/xxx/jogl/src/net/java/games/jogl/GLCanvas.java uses or overrides a deprecated API.
[javac] Note: Recompile with -deprecation for details.
[javac] 2 errors
this looks like an app-killer:
[apply] src/native/jogl/MacOSXWindowSystemInterface.m: In function `updateContextRegister’:
[apply] src/native/jogl/MacOSXWindowSystemInterface.m:148: warning: no return statement in function returning non-void
this is wrong:
@implementation ContextUpdater
{
}
static NSOpenGLContext *theContext;
static pthread_mutex_t resourceLock = PTHREAD_MUTEX_INITIALIZER;
a) implementations don’t have an instance-var block {}
b) static vars and function do not belong inside an implementation or interface.