Issue
I want to set the default Java Platform which is used to build my projects in NetBeans 8.2 (netbeans_jdkhome).
Prior versions allowed me to do that. See this answer.
The only problem is that I want to set this platform to be 1.7 (instead of current 1.8), but NetBeans 8.2 requires to run on 1.8, so I cannot have 1.7 as the default Java Platform.
Is there a way to override it?
Solution
For now, it appears there isn't any way to override it. Here is NetBeans Help about the Java Platform Manager:
Use to register different versions of the Java Development Kit (JDK) and other Java tools that your programs depend on. The dialog box lists all of your registered JDKs in the left pane and lists the JDK that the IDE is running on as the Default Platform.
So I'll have to change platform for each project, because NetBeans 8.2 can not run with JDK 1.7 (so I can't set it as the default platform).
There is a recent plugin that allows to right-click Maven projects to set the JDK (still cannot set it by default).
Answered By - Groben
Answer Checked By - Cary Denson (JavaFixing Admin)