Skip to content

Instantly share code, notes, and snippets.

@zedar
Created February 15, 2015 13:45
Show Gist options
  • Save zedar/801f6d28510515cb41d0 to your computer and use it in GitHub Desktop.
Save zedar/801f6d28510515cb41d0 to your computer and use it in GitHub Desktop.
Intellij OSX and JVM version

After installing Intellij IDEA 14 in OSX you can get a message that JRE 1.6 is required to run it. If you have already installed JDK1.7 or JDK1.8 do following changes:

$ cd /Applications/IntelliJ\ IDEA\ 14\ CE.app/Contents/
$ vim Info.plist

Change

<key>JVMVersion</key>
<string>1.6*</string>

to

<key>JVMVersion</key>
<string>1.8*</string>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment