Whenever I gradle build my Spring app in IntelliJ, compiler.xml gets modified and shows up in my git status.
Is it safe to put compiler.xml file in .gitignore with the other .idea/ files?
Whenever I gradle build my Spring app in IntelliJ, compiler.xml gets modified and shows up in my git status.
Is it safe to put compiler.xml file in .gitignore with the other .idea/ files?
Correct me if I'm wrong, but I think it's all good. You can probably put .idea/* in .gitignore. I am currently working on a project in uni and we've had some startup issues with .idea/compiler.xml being changed back and forth, and I think it was because someone used java 11 when the rest of us used java 12. So be mindfull about that.