IntelliJ Idea編譯報錯:請使用 -source 7 或更高版本以啟用 diamond 運算子
IntelliJ Idea maven專案編譯報錯:
Information:Using javac 1.7.0_79 to compile java sources
Information:java: javacTask: 源發行版 1.7 需要目標發行版 1.7
Information:java: Errors occurred while compiling module 'wsdlutils'
Information:2016/4/13 16:42 - Compilation completed with 1 error and 0 warnings in 1s 805ms
Error:java: Compilation failed: internal java compiler error
參考文章[http://blog.csdn.net/wave_1102/article/details/47671019]都不能解決問題。
原來在IntelliJ Idea 預設的jdk是1.5。以上的修改都不會起作用的。見【https://maven.apache.org/plugins/maven-compiler-plugin/】
Also note that at present the default source setting is 1.5 and the default target setting is 1.5, independently of the JDK you run Maven with. If you want to change these defaults, you should set source and target as described in Setting the -source and -target of the Java Compiler.
在專案的pom檔案中加以下內容:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
相關文章
- IntelliJ IDEA編譯專案報錯 "xxx包不存在&qIntelliJIdea編譯
- IntelliJ IDEA 啟用教程,最新啟用碼 IDEA使用技巧IntelliJIdea
- IntelliJ IDEA 2023漢化啟用版+IDEA 2023啟用碼最新IntelliJIdea
- intellij idea 無法啟動或除錯 spring-bootIntelliJIdea除錯Springboot
- IntelliJ IDEA 2023 &Mac 最新中文啟用版IntelliJIdeaMac
- IntelliJ IDEA 2023 for Mac完美啟用版 IntelliJ IDEA 2023最新註冊碼分享IntelliJIdeaMac
- 使用Live Reload在IntelliJ Idea和Chrome實時編譯部署和除錯IntelliJIdeaChrome編譯除錯
- IntelliJ IDEA 啟用(最新)IntelliJIdea
- IDEA報錯java: 編譯失敗: 內部 java 編譯器錯誤IdeaJava編譯
- IntelliJ IDEA 2022 for Mac親測完美啟用使用IntelliJIdeaMac
- 免費申請和使用IntelliJ IDEA商業版License指南IntelliJIdea
- IntelliJ IDEA 2023 v2023.2.4中文啟用版IntelliJIdea
- JetBrains IntelliJ IDEA 2023中文啟用版mac/winAIIntelliJIdeaMac
- IntelliJ IDEA 2023 for Mac v2023.1.2漢化啟用版IntelliJIdeaMac
- IntelliJ IDEA 17 本地LicenseServer啟用IntelliJIdeaServer
- IntelliJ IDEA 註冊碼啟用IntelliJIdea
- 使用Intellij Idea編寫Spark應用程式(Scala+SBT)IntelliJIdeaSpark
- IntelliJ IDEA使用教程(2018圖文版)IntelliJIdea
- 詳解IntelliJ IDEA遠端介紹除錯Tomcat的方法 IntelliJ IDEA mac永 久啟用秘鑰分享IntelliJIdea除錯TomcatMac
- 在IntelliJ idea中使用docker除錯Spring Boot應用程式IntelliJIdeaDocker除錯Spring Boot
- 支援M1、IntelliJ IDEA 2023.2.5中文版 附 啟用版IntelliJIdea
- 【譯】使用 Source Link 提高除錯效率除錯
- 好用的Java開發工具:IntelliJ IDEA 2022漢化啟用版JavaIntelliJIdea
- IntelliJ IDEA 最常用配置,應用、永久啟用IntelliJIdea
- 使用Intellij IDEA遠端除錯Spark程式IntelliJIdea除錯Spark
- Intellij IDEA除錯功能使用總結IntelliJIdea除錯
- idea報錯-source 1.5 中不支援 try-with-resourcesIdea
- 用IntelliJ IDEA ULTIMATE版看Java類圖IntelliJIdeaJava
- IntelliJ IDEA 超實用使用技巧分享IntelliJIdea
- 不再支援源選項 5。請使用 6 或更高版本。|| 不再支援目標選項 1.5。請使用 1.6 或更高版本。
- 【Intellij IDEA】開啟IDEA時錯誤:Failed to load JVM DLL ...\jvm.dllIntelliJIdeaAIJVM
- 關於 IntelliJ IDEA 2024 安裝使用 (附加啟用碼、補丁)IntelliJIdea
- 再編寫程式碼中報錯:CS8107 C# 7.0 中不支援功能“xxxxxx”。請使用 7.1 或更高的語言版本。C#
- IntelliJ IDEA 永久破解啟用教程(親測有效)IntelliJIdea
- IntelliJ IDEA 2023:創新不止步,開發更自由 mac/win啟用版IntelliJIdeaMac
- 在Intellij IDEA下用X-debug除錯PHPIntelliJIdea除錯PHP
- Idea編譯錯誤解決辦法Idea編譯
- 【IntelliJ IDEA】2024最新使用IntelliJIdea