<!-- 解决IDEA自动重置LanguageLevel和JavaCompiler版本的问题 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin>
解决IDEA自动重置LanguageLevel和JavaCompiler版本的问题
最新推荐文章于 2021-09-20 13:12:00 发布
本文介绍了一种解决IntelliJ IDEA中LanguageLevel和Java Compiler版本被自动重置问题的方法。通过配置maven-compiler-plugin插件的具体版本,设置Java源代码和目标代码为1.7版本,确保了项目的稳定性和一致性。
501

被折叠的 条评论
为什么被折叠?



