To get Java 1.6 on OS X I installed Apple's JavaForMacOSX10.5Update10
and javadeveloper_for_mac_os_x_10.5__9m3425
on OS X 10.5.8, on my 64-bit capable Intel-based Mac (required for 1.6).
However, java -version gives "1.5.0_30", and a peek into
/System/Library/Frameworks/JavaVM.framework/Versions/
shows:
lrwxr-xr-x 1 root wheel 5 7 Sep 23:21 1.4 -> 1.4.2
lrwxr-xr-x 1 root wheel 3 5 Sep 19:12 1.4.1 -> 1.4
drwxr-xr-x 8 root wheel 272 4 Jan 2006 1.4.2
lrwxr-xr-x 1 root wheel 5 22 Oct 10:39 1.5 -> 1.5.0
drwxr-xr-x 8 root wheel 272 4 Jan 2006 1.5.0
lrwxr-xr-x 1 root wheel 5 22 Oct 10:39 1.6 -> 1.6.0
lrwxr-xr-x 1 root wheel 59 22 Oct 10:39 1.6.0 -> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents
drwxr-xr-x 10 root wheel 340 23 Oct 12:47 A
lrwxr-xr-x 1 root wheel 1 23 Oct 12:47 Current -> A
lrwxr-xr-x 1 root wheel 3 23 Oct 12:47 CurrentJDK -> 1.5
but 1.6 isn't showing in the Java preferences app (the advised OS X way to do it), and RubyMine can't find "a compatible version of Java 1.6".
Launching a browser with JavaTester showed that my applets were being 'updated for Java SE 6', although '1.5.0_30' is the version the tester finds.
I've tried:
sudo rm -fr CurrentJDK
sudo ln -s 1.6 CurrentJDK
To no avail.
Various posts I've read on SO often suggest using JAVA_HOME but a Java blog post and a comment in another detailed post suggest caution, and that this will only work on the CL. Advice?