Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crash Jetbrains ide with Yosemite Mac osX (Webstorm, intellij)

This is a tip in reference to Yosemite ´s users (10.10). Yosemite erase 1.6 apple jdk and install 1.7, but JAVA´s IDE for example Intellij or Eclipse needs 1.6, if you haven´t reinstalled this version, your ide will crash at the beginning... after this process you can configure your ide with 1.7 version.

Here the link : Apple JDK 1.6

like image 415
inane Avatar asked Oct 18 '14 10:10

inane


People also ask

Is WebStorm same as IntelliJ?

WebStorm is partially open source The IntelliJ Platform and many plugins for it are open source. The IntelliJ Platform is even used outside of JetBrains! For example, Android Studio is built on top of it – check out how similar its UI is to WebStorm.

Is IntelliJ compatible with Mac?

IntelliJ IDEA is a cross-platform IDE that provides consistent experience on the Windows, macOS, and Linux operating systems.

Does IntelliJ work on M1 Mac?

I just recently got a new Mac book pro with M1 Chip, for some reason when i started working on a java project the entire IDE got so so slow. It's practically extremely hard to use. Intellij seems to work fine on my other macbook pro 16".


2 Answers

It's easy to change Jetbrains' products to use jdk1.7:

  1. Open Application folder
  2. Choose Jetbrains product you use
  3. RightClick and choose 'show package content' <- I dont know how exactly it is in english version of OS
  4. Choose Contents
  5. Double Click Info.plist
  6. Find:

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

  7. and change to:

    <key>JVMVersion</key> <string>1.7*</string>

  8. Save and quit,

  9. Enjoy!
like image 74
Mariusz Nosiński Avatar answered Oct 12 '22 23:10

Mariusz Nosiński


Please do not edit your Info.plist file as it will break the application digital signature and prevent the patch updates.

I was able to get phpStorm working properly again on my Mac ( Yosemite ) by installing this apple support package: Java for OS X 2014-001Java

This package installs the same version of Java 6 included in Java for OS X 2013-005 which apparently plays nice with JetBrains.

Hope this helps.

like image 21
Douglas.Sesar Avatar answered Oct 13 '22 00:10

Douglas.Sesar