With a bit of help from the #geotools IRC channel (thanks Micheal Bedward) I have gotten around to hooking up Eclipse with the "normal" Mac OSX JDK.
The normal JDK is actually a bit hard to find; as it requires a separate download. The location of the JDK has also recently moved leaving much of the documentation out of date.
References:
Here is how to fix things up:
- Lion does not come with a JDK; you can go and download one directly from http://connect.apple.com. Yes you need to sign up and login with your apple id. The download column is over on the right; and you should be able to find your way.
-
The jdk is installed into a different location then pervious. This will result in IDEs (such as Eclipse) being unable to locate source code and javadocs.
-
At the time of writing the JDK ended up here:
/Library/Java/JavaVirtualMachines/1.6.0_31-b04-415.jdk/Contents/Home
Please go ahead and have a look to confirm where your JDK ended up; this will no doubt change over time.
-
Open up eclipse preferences and go to Java --> Installed JREs page
-
Rather than use the "JVM Contents (MacOS X Default) we will need to use the above JDK location
-
At the time of writing the Search button was not aware of the new JDK location; we we will need to click on the Add button and hunt it down ourselves.
-
From the Add JRE wizard choose "MacOS X VM" for the JRE Type
-
For the JRE Definition Page we need to fill in the following:
JRE Home:/Library/Java/JavaVirtualMachines/1.6.0_26-b03-383.jdk/Contents/Home
-
The other fields will now auto fill, with the default JRE name being "Home". You can quickly correct this to something more meaningful:
JRE name:System JDK
-
Finish the wizard and return to the Installed JREs page
-
Choose "System JDK" from the list
You can now developer normally with javadocs correctly shown for for the base classes like java.lang.String, source code correctly shown when debugging.