I'm running proguard to shrink my jar file. One of the parameters it needs is the system's runtime jar. This is at $JAVA_HOME/lib/rt.jar on Sun distributions, but not on Apple's Mac OSX (Snow Leopard in my case).

Is there an rt.jar for OSX?

link|improve this question

46% accept rate
feedback

2 Answers

up vote 5 down vote accepted

It is called classes.jar and it is under /System/Library/Frameworks/JavaVM.framework/Classes

Look here for details:

http://lists.apple.com/archives/java-dev/2003/Mar/msg01530.html

link|improve this answer
feedback

There's some explanation of how to get to the rt.jar equivalent in the What should I set JAVA_HOME to on OSX question.

The short answer is to use the result of /usr/libexec/java_home or to set JAVA_HOME to $(/usr/libexec/java_home) and then find classes.jar (the OS X equivalent of rt.jar) at JAVA_HOME/bundle/Classes/classes.jar

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.