Reputation: 40337
My Mac currently is running Snow Leopard (10.6.8), and I would like to develop with Java 7. I downloaded the Java 7 OS X installer from Oracle's website, started to run it. Unfortunately, I was immediately greeted with a message that said the installer is supported only on OS X Lion (10.7.3). Is there any way I can get Java 7 on my machine with Snow Leopard? I am not buying a new OS just to upgrade my Java. I googled around some, but I am not finding much. I'm hoping I can find some help here. Thanks.
Upvotes: 70
Views: 84275
Reputation: 1169
I was able to compile openJDK 7 for snow leopard (works entirely, AWT included), from some patches at this project:
https://github.com/hgomez/obuildfactory/
If you want my binaries for a little bit of an easier time, here they are:
https://bintray.com/wyatt8740/generic/openjdk7-sdk-osx-10.6/20140622/view
The tarball is about 57 megabytes.
Extract it under /Library/Java/JavaVirtualMachines/
. The JDK will be in a directory called jdk1.7.0.jdk
. Set your JAVA_HOME
environment variable to /Library/Java/JavaVirtualMachines/jdk1.7.0.jdk/Contents/Home
, and from then put the command for setting JAVA_HOME in your ~/.profile
to make it more permanent. Log out and in for it to take full effect. The only thing missing so far is a JDK 7 browser plugin.
You can also use the "Java preferences' app (can be found in spotlight search) to set it to the default when accessed via GUI as well.
Unfortunately, I don't have access to OS X at the moment to try to make java 1.8 work, so 1.7 is probably the end of the road for 10.6.
Upvotes: 3
Reputation: 628
What you want is not impossible but for sure NOT recommended but... once you are sure that this is what you want, here is an easy way to install Java (or any software for OS related matters): - navigate to you MainHD/System/Library/CoreServices/SystemVersion.plist - backup this file !! - open it in Text editor and alter the product version:
<key>ProductUserVisibleVersion</key>
<string>10.6.8</string>
<key>ProductVersion</key>
<string>10.6.8</string>
according to you needs.
Warning: A samurai take 7 breaths before taken any decision.
Upvotes: 1
Reputation: 354
There are two ways to do this.
Good luck!
Upvotes: 3
Reputation: 71
The answer from @reukiodo is definitely the way to go, so thanks a bunch!. However, it might need some further explanation for newbs like myself.
Upvotes: 7
Reputation: 1869
I have changed the version in the /System/Library/CoreServices/SystemVersion.plist
based on this video tutorial http://www.youtube.com/watch?v=eFi-H-7-PD4
Upvotes: 2
Reputation: 99
I had the same problem and was not able to google the proper way to do it. At the end I came up with solution myself and put it on my blog:
http://jksha.blogspot.se/2013/09/java-7-and-snow-leopard-osx-106.html
Upvotes: 10
Reputation: 2119
From what I have read JDK 7 does not require 10.7+ so I simply opened the shipped .pkg
installer file with PackageMaker (an Xcode tool) and removed the OS version requirement and re-built it.
You will need to copy the installer out of the .dmg file since you have to save changes.
Edit: You will need to Build to another directory as the mounted .dmg is read-only.
So far in my using this I haven't experienced any issues, even the Java preference pane is working properly.
One thing to note, you will have to reorder JDKs in Java Preferences.app
to get programs to use the new JDK instead of Java 6.
I've even gone as far as to copy the Java 7 .jdk
bundle into /System/Library/Java/JavaVirtualMachines/
, and it seems to be function normally.
Just don't move/rename the JDK bundles while Java applications are running; not that I've done that by accident or anything...
Upvotes: 25
Reputation: 762
Use Pacifist from http://www.charlessoft.com/ to open and install the 'JDK 7 Update X.pkg' in the 'jdk7-7uX-macosx-x64.dmg' file you download from http://www.oracle.com/technetwork/java/javase/downloads/index.html
Upvotes: 43
Reputation:
You can build your own one. I did this before. It was easy. And it's as official as you can probably get:
https://wikis.oracle.com/display/OpenJDK/Mac+OS+X+Port
Upvotes: 2