當遇到與不支援的功能相關的 Java 編譯器錯誤時,可能是由於編譯器版本過時造成的使用。 Maven 提供了一種在 pom.xml 檔案中指定目標 Java 編譯器版本的方法。
在pom.xml 檔案中指定Java 編譯器版本,在
<properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties>
將“1.8”替換為所需的Java 編譯器版本。
確保檢查有效的 POM 以驗證 maven 編譯器-plugin 存在於插件層次結構中。如果沒有,請將以下內容新增至
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build>
透過在pom.xml 檔案中指定編譯器版本,Maven 將使用該版本來編譯Java 程式碼,解決與不支援的功能相關的錯誤。
以上是如何在我的 pom.xml 檔案中指定 Java 編譯器版本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!