Install JDK 1.5 on OSX 10.10

I am using Mac OS X 10.10 (Yosemite), I need to use JDK 1.5 to develop legacy applications. I am having problems installing JDK 1.5.

I can find 1.5.dmg ( http://support.apple.com/downloads/DL1359/en_US/JavaForMacOSX10.5Update10.dmg ), unfortunately this cannot be installed in Yosemite.

Does anyone know how I can install JDK 1.5 on OS X 10.10 (Yosemite)?

+2
source share
1 answer

I would recommend using Homebrew . After installing it, follow these steps:

brew tap caskroom/versions

See which versions of Java are available:

brew cask search java

Install the appropriate version:

brew install java6

, - jenv. :

brew install jenv

:

jenv add <javaPath>
0

All Articles