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>
相關文章
- Error:(142, 34) java: -source 1.6 中不支援 multi-catch 語句 (請使用 -source 7 或更高版本以啟用 multi-catch 語句)ErrorJava
- IntelliJ IDEA 啟用教程,最新啟用碼 IDEA使用技巧IntelliJIdea
- IntelliJ IDEA編譯專案報錯 "xxx包不存在&qIntelliJIdea編譯
- intellij idea 無法啟動或除錯 spring-bootIntelliJIdea除錯Springboot
- IntelliJ IDEA 啟用(最新)IntelliJIdea
- IDEA報錯java: 編譯失敗: 內部 java 編譯器錯誤IdeaJava編譯
- 用jb7編譯jdon的錯誤,請高手看看編譯
- 使用Live Reload在IntelliJ Idea和Chrome實時編譯部署和除錯IntelliJIdeaChrome編譯除錯
- IntelliJ IDEA 2023漢化啟用版+IDEA 2023啟用碼最新IntelliJIdea
- IntelliJ IDEA 2023 &Mac 最新中文啟用版IntelliJIdeaMac
- 免費申請和使用IntelliJ IDEA商業版License指南IntelliJIdea
- IntelliJ IDEA 概要 [翻譯](IntelliJ IDEA Essentials)IntelliJIdea
- IntelliJ IDEA 17 本地LicenseServer啟用IntelliJIdeaServer
- IntelliJ IDEA 註冊碼啟用IntelliJIdea
- js 與或運算子&&和||使用技巧JS
- 使用Intellij Idea編寫Spark應用程式(Scala+SBT)IntelliJIdeaSpark
- idea報錯-source 1.5 中不支援 try-with-resourcesIdea
- 不再支援源選項 5。請使用 6 或更高版本。|| 不再支援目標選項 1.5。請使用 1.6 或更高版本。
- Intellij IDEA除錯IntelliJIdea除錯
- IntelliJ IDEA 2023 for Mac完美啟用版 IntelliJ IDEA 2023最新註冊碼分享IntelliJIdeaMac
- IntelliJ IDEA 最常用配置,應用、永久啟用IntelliJIdea
- 用IntelliJ IDEA ULTIMATE版看Java類圖IntelliJIdeaJava
- IntelliJ IDEA 2022 for Mac親測完美啟用使用IntelliJIdeaMac
- 【譯】使用 Source Link 提高除錯效率除錯
- JetBrains IntelliJ IDEA 2023中文啟用版mac/winAIIntelliJIdeaMac
- IntelliJ IDEA使用IntelliJIdea
- Intellij IDEA除錯功能使用總結IntelliJIdea除錯
- 使用Intellij IDEA遠端除錯Spark程式IntelliJIdea除錯Spark
- 支援M1、IntelliJ IDEA 2023.2.5中文版 附 啟用版IntelliJIdea
- 詳解IntelliJ IDEA遠端介紹除錯Tomcat的方法 IntelliJ IDEA mac永 久啟用秘鑰分享IntelliJIdea除錯TomcatMac
- JavaScript | 按位或運算子JavaScript
- JavaScript || 邏輯或運算子JavaScript
- 在IntelliJ idea中使用docker除錯Spring Boot應用程式IntelliJIdeaDocker除錯Spring Boot
- IntelliJ IDEA 超實用使用技巧分享IntelliJIdea
- 好用的Java開發工具:IntelliJ IDEA 2022漢化啟用版JavaIntelliJIdea
- IntelliJ IDEA 永久破解啟用教程(親測有效)IntelliJIdea
- 專案編譯報錯編譯
- Maven [ERROR] 不再支援源選項 5,請使用 7 或更高版本的解決辦法MavenError