英文:
How to stop/prevent Intellij from reverting maven-compiler-plugin target version
问题
我最近将Java版本从14更改为15。
自那时以来,Intellij在每次启动时都会更改我的pom.xml文件。
它会将<maven-compiler-plugin>的<target>版本更改为14。
有人可以帮忙阻止IntelliJ编辑我的pom.xml文件吗?
英文:
I have recently changed the Java version from 14 to 15.
And ever since, Intellij changed my pom.xml files on every startup.
It changes <target> version of <maven-compiler-plugin> to 14.
Can someone help to prevent IntelliJ from editing my pom.xml files?
答案1
得分: 1
所以,解决方案非常简单。
我在Intellij项目设置中将SDK版本更改为15。
文件 -> 项目结构 -> 项目SDK
文件 -> 项目结构 -> 项目语言级别
英文:
So, the solution was very simple.
I changed the SDK version in Intellij project settings to 15.
File -> Project Structure -> Project SDK
File -> Project Structure -> Project language level
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论