I have a project within IntelliJ IDEA Ultimate 2016.1 that was using Java 1.7. I wanted to use a maven plugin that required Java 1.8, so I changed various Java settings in Intellij IDEA.
File -> Settings
Build, Execution, Deployment -> Compiler -> Java Compiler
MyModule -> Open Module Settings
Project Structure window, [Project Settings -> Modules] Dependencies tab
Project Structure window, [Project Settings -> Project] Project SDK and Project language level
IntelliJ IDEA has a really nice feature of keeping a "local history" when one changes source files in the editor. It would be nice if they kept a history for their settings files, or if they maintained backup settings files.
I can't find such a feature. When I look at the .idea
directory containing the files that keep the setting information, e.g., misc.xml
and compiler.xml
, I don't see any backup files.
Does IntelliJ provide any way to backup to older settings? If not, I suppose I should get in the habit of making backup copies myself. But shouldn't modern development tools protect me from myself? ;)